Skip to content

Commit

Permalink
Merge pull request #10 from jaymo1011/assert-level-fix
Browse files Browse the repository at this point in the history
Fix incorrect assert() handling
  • Loading branch information
sewbacca authored Apr 15, 2024
2 parents b165f84 + f233464 commit f89c816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debugger/lldebugger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ do
local args = {...}
if not v then
local message = ((args[1] ~= nil) and args[1]) or "assertion failed"
breakForError(message, 1, true)
breakForError(message, 2, true)
end
return v, unpack(args)
end
Expand Down

0 comments on commit f89c816

Please sign in to comment.