return function(args) love.setDeprecationOutput(false) local runtime = "game" if not love.filesystem.isFused() and args[1] == '-r' then runtime = args[2] end local path = "runtime/"..runtime..".lua" local rt = assert( loadstring(assert(love.filesystem.read(path)), "@"..path)) return rt(unpack(args, 3)) end