mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
fix(error): fixed incorrect symbols
This commit is contained in:
parent
da4ca1352d
commit
7f051cfec4
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue