mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-23 19:08:05 +11:00
In other news, I screwed up twice in the previous commit, try this
This commit is contained in:
parent
de822181bc
commit
f49a4bf433
@ -623,7 +623,7 @@ local function startLauncher()
|
|||||||
if not waitingShutdownCallback then
|
if not waitingShutdownCallback then
|
||||||
local lApp = "app-launcher"
|
local lApp = "app-launcher"
|
||||||
if savingThrow then
|
if savingThrow then
|
||||||
lApp = lApp or savingThrow.getSetting("sys-everest.launcher")
|
lApp = savingThrow.getSetting("sys-everest.launcher") or lApp
|
||||||
end
|
end
|
||||||
if lApp then
|
if lApp then
|
||||||
neo.executeAsync(lApp)
|
neo.executeAsync(lApp)
|
||||||
|
@ -10,7 +10,7 @@ readBufSize = 2048
|
|||||||
-- A function used for logging, usable by programs.
|
-- A function used for logging, usable by programs.
|
||||||
emergencyFunction = function (...)
|
emergencyFunction = function (...)
|
||||||
computer.pushSignal("_kosneo_syslog", "kernel", ...)
|
computer.pushSignal("_kosneo_syslog", "kernel", ...)
|
||||||
if ocemu.log then
|
if ocemu and ocemu.log then
|
||||||
pcall(ocemu.log, ...)
|
pcall(ocemu.log, ...)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user