Roll Back

This commit is contained in:
Anonymous275
2020-11-14 23:50:15 +02:00
parent 179b46d17b
commit c517a48fa6
9 changed files with 42 additions and 52 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) ") + std::string(hex));
except(Sec("(Core) Code : ") + std::string(hex));
delete [] hex;
return 1;
}