From 7f051cfec4edb30ce0b56177008de3641cfa26e4 Mon Sep 17 00:00:00 2001 From: superp00t Date: Fri, 22 Nov 2024 02:40:18 -0500 Subject: [PATCH] fix(error): fixed incorrect symbols --- storm/error/win/Display.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/storm/error/win/Display.cpp b/storm/error/win/Display.cpp index 74c3587..6ee6785 100644 --- a/storm/error/win/Display.cpp +++ b/storm/error/win/Display.cpp @@ -49,18 +49,18 @@ class error_report { this->printf(" App: %s\n", "GenericBlizzardApp"); if (errorcode != 0x85100000) { - this->printf(" Error Code: 0x%08X\n", errorcode); + this->printf(" Error Code: 0x%08X\n", this->m_errorcode); } // TODO output time - this->printf(" Error: %s\n\n", description); + this->printf(" Error: %s\n\n", this->m_description); } else { this->printf("Assertion Failed!\n\n"); this->printf(" App: %s\n", "GenericBlizzardApp"); - this->printf(" File: %s\n", filename); - this->printf(" Line: %d\n", linenumber); + this->printf(" File: %s\n", this->m_filename); + this->printf(" Line: %d\n", this->m_linenumber); if (errorcode != 0x85100000) { this->printf(" Error Code: 0x%08X\n", errorcode);