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
local lApp = "app-launcher"
if savingThrow then
lApp = lApp or savingThrow.getSetting("sys-everest.launcher")
lApp = savingThrow.getSetting("sys-everest.launcher") or lApp
end
if lApp then
neo.executeAsync(lApp)

View File

@ -10,7 +10,7 @@ readBufSize = 2048
-- A function used for logging, usable by programs.
emergencyFunction = function (...)
computer.pushSignal("_kosneo_syslog", "kernel", ...)
if ocemu.log then
if ocemu and ocemu.log then
pcall(ocemu.log, ...)
end
end