Recover immediately when driver corrects error, without needing to press a key.
Y6CM7ESH4RXOP2X7P724OANDICJ3EZ7BSPMRSGIQU7UPSMO2J23QC
live.update(dt)
if Current_time - Live.previous_read > 0.1 then
local buf = live.receive_from_driver()
if buf then
local maybe_modified = live.run(buf)
if maybe_modified then
-- retry
App.run_frame = main_run_frame
return
end
end
Live.previous_read = Current_time
end