mirror of
https://github.com/love2d/love.git
synced 2026-08-14 01:20:56 +02:00
Fixed bug where 'result' was stored in global namespace (boot.lua)
This commit is contained in:
@@ -838,9 +838,9 @@ end
|
||||
-- The root of all calls.
|
||||
-----------------------------------------------------------
|
||||
|
||||
result = xpcall(love.boot, error_printer)
|
||||
local result = xpcall(love.boot, error_printer)
|
||||
if not result then return end
|
||||
result = xpcall(love.init, love.errhand)
|
||||
local result = xpcall(love.init, love.errhand)
|
||||
if not result then return end
|
||||
result = xpcall(love.run, love.errhand)
|
||||
local result = xpcall(love.run, love.errhand)
|
||||
if not result then return end
|
||||
|
||||
Reference in New Issue
Block a user