1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-11-23 10:58:06 +11:00

In other news, I screwed up twice in the previous commit, try this

This commit is contained in:
20kdc 2018-04-23 20:28:43 +01:00
parent de822181bc
commit f49a4bf433
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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