print render crash cause to user

This commit is contained in:
Mikayla Fischler
2024-06-14 17:42:03 -04:00
parent ea8f62dea6
commit 219f02b188
2 changed files with 7 additions and 4 deletions

View File

@@ -148,8 +148,6 @@ function threads.thread__render(smem)
local last_update = util.time()
local ui_message
-- thread loop
while true do
-- check for messages in the message queue
@@ -171,9 +169,9 @@ function threads.thread__render(smem)
local draw_start = util.time_ms()
pkt_state.ui_ok, ui_message = pcall(function () nav.load_app(cmd.val) end)
pkt_state.ui_ok, pkt_state.ui_error = pcall(function () nav.load_app(cmd.val) end)
if not pkt_state.ui_ok then
log.fatal(util.c("RENDER: app load failed with error ", ui_message))
log.fatal(util.c("RENDER: app load failed with error ", pkt_state.ui_error))
else
log.debug("RENDER: app loaded in " .. (util.time_ms() - draw_start) .. "ms")
end