load manifest in correct order

[?]
Nov 28, 2022, 2:07 AM
WNHI74P7U7VMNAQDGPFI7ZFI57HWA7CPUSIVZKCAIQMAIX5PFEYQC

Dependencies

  • [2] LRDM35CE app running again
  • [3] TBWAE64A app is now live, can communicate with driver

Change contents

  • edit in live.lua at line 118
    [2.4342]
    [2.4342]
    local files_to_load = {}
  • replacement in live.lua at line 123
    [2.4496][2.4496:4598]()
    local buf = love.filesystem.read(filename)
    assert(buf and buf ~= '')
    live.eval(buf)
    [2.4496]
    [2.4598]
    table.insert(files_to_load, filename)
  • edit in live.lua at line 126
    [2.4612]
    [2.4612]
    table.sort(files_to_load)
    for _,filename in ipairs(files_to_load) do
    local buf = love.filesystem.read(filename)
    assert(buf and buf ~= '')
    live.eval(buf)
    end