fix(error): fixed incorrect symbols

This commit is contained in:
phaneron 2024-11-22 02:40:18 -05:00
parent da4ca1352d
commit 7f051cfec4

View file

@ -49,18 +49,18 @@ class error_report {
this->printf(" App: %s\n", "GenericBlizzardApp"); this->printf(" App: %s\n", "GenericBlizzardApp");
if (errorcode != 0x85100000) { if (errorcode != 0x85100000) {
this->printf(" Error Code: 0x%08X\n", errorcode); this->printf(" Error Code: 0x%08X\n", this->m_errorcode);
} }
// TODO output time // TODO output time
this->printf(" Error: %s\n\n", description); this->printf(" Error: %s\n\n", this->m_description);
} else { } else {
this->printf("Assertion Failed!\n\n"); this->printf("Assertion Failed!\n\n");
this->printf(" App: %s\n", "GenericBlizzardApp"); this->printf(" App: %s\n", "GenericBlizzardApp");
this->printf(" File: %s\n", filename); this->printf(" File: %s\n", this->m_filename);
this->printf(" Line: %d\n", linenumber); this->printf(" Line: %d\n", this->m_linenumber);
if (errorcode != 0x85100000) { if (errorcode != 0x85100000) {
this->printf(" Error Code: 0x%08X\n", errorcode); this->printf(" Error Code: 0x%08X\n", errorcode);