check fix

This commit is contained in:
Anonymous275
2020-11-14 23:26:59 +02:00
parent db3f7b9988
commit 5753ebb887
7 changed files with 36 additions and 42 deletions

View File

@@ -227,7 +227,7 @@ void CoreMain() {
int Handle(EXCEPTION_POINTERS *ep){
char* hex = new char[100];
sprintf_s(hex,100, "%lX", ep->ExceptionRecord->ExceptionCode);
except(Sec("(Core) Code : ") + std::string(hex));
except(Sec("(Core) ") + std::string(hex));
delete [] hex;
return 1;
}