This commit is contained in:
Asuro
2025-02-08 02:49:13 +01:00
parent 14e923873a
commit c868a3c43e
8 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ namespace Game
virtual void traceVargs(const char* _filePath, uint16_t _line, const char* _format, va_list _argList) override
{
printf("%s (%d): ", _filePath, _line);
printf(_format, _argList);
vprintf(_format, _argList);
}
virtual void profilerBegin(const char* /*_name*/, uint32_t /*_abgr*/, const char* /*_filePath*/, uint16_t /*_line*/) override