This commit is contained in:
Branimir Karadžić
2025-10-21 18:03:23 -07:00
parent c8128850f8
commit af959f53f9
2 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ namespace bx
{
va_list argList;
va_start(argList, _format);
const bool result = s_assertHandler(_location, _skip, _format, argList);
const bool result = s_assertHandler(_location, _skip + 1 /* skip self */, _format, argList);
va_end(argList);
return result;