load manifest in correct order
[?]
Nov 28, 2022, 2:03 AM
ECUOUZI7JCVMXHY57MF6VA6FQMYOXRZXAMWCYWZVTAQ266UR23MQCDependencies
Change contents
- edit in main.lua at line 126
local files_to_load = {} - replacement in main.lua at line 131
local buf = love.filesystem.read(filename)assert(buf and buf ~= '')app.eval(buf)table.insert(files_to_load, filename) - edit in main.lua at line 134
table.sort(files_to_load)for _,filename in ipairs(files_to_load) dolocal buf = love.filesystem.read(filename)assert(buf and buf ~= '')app.eval(buf)end