No, it actually says love.filesystem.open failed, and you might need to take a look at the reference manual, correct use of assert is:
assert(function, "OMG CRASED"), it will in turn give you a LÖVE error message with the text "OMG CRASHED" and thereby stop the game.
Stupid of me that I hadn't noticed before but:
Code: Select all
assert(love.filesystem.open(SaveGame),love.system.exit()) --will never work, as it tries to 'evaluate' love.system.exit() before actually checking the return values of love.filesystem.open
So, Chris016, if you can post your stdout.txt and stderr.txt that'd be great.