RE3 -> REVC

This commit is contained in:
GaryOderNichts 2021-08-19 20:28:49 +02:00
parent 9465d49c32
commit d37af914e1
2 changed files with 3 additions and 3 deletions

View File

@ -1239,10 +1239,10 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con
abort(); abort();
#elif __WIIU__ #elif __WIIU__
WHBLogPrintf("\nRE3 ASSERT FAILED\n\tFile: %s\n\tLine: %d\n\tFunction: %s\n\tExpression: %s\n",filename,lineno,func,expr); WHBLogPrintf("\nREVC ASSERT FAILED\n\tFile: %s\n\tLine: %d\n\tFunction: %s\n\tExpression: %s\n",filename,lineno,func,expr);
char buf[2048]; char buf[2048];
sprintf(buf, "RE3 ASSERT FAILED\nFile: %s\nLine: %d\nFunction: %s\nExpression: %s\n",filename,lineno,func,expr); sprintf(buf, "REVC ASSERT FAILED\nFile: %s\nLine: %d\nFunction: %s\nExpression: %s\n",filename,lineno,func,expr);
OSFatal(buf); OSFatal(buf);
#else #else
// TODO // TODO

View File

@ -57,7 +57,7 @@ crashReportThread(int argc, const char **argv)
WHBLogPrint(sStackTraceBuffer); WHBLogPrint(sStackTraceBuffer);
#endif #endif
sprintf(sFatalBuffer, "RE3 CRASH\nStackTrace:\n%s", sStackTraceBuffer); sprintf(sFatalBuffer, "REVC CRASH\nStackTrace:\n%s", sStackTraceBuffer);
OSFatal(sFatalBuffer); OSFatal(sFatalBuffer);
return 0; return 0;
} }