boot.lua: exit successfully when printing help;

This commit is contained in:
bjorn 2024-03-12 13:32:26 -07:00
parent 27c59de5dc
commit 26d17fc402
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ function lovr.boot()
'usage: lovr <source>',
'<source> can be a Lua file, a folder with a main.lua file, or a zip archive'
}, '\n'))
return 1
return 0
end
end
end