summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-02-18 23:01:46 +0100
committerwithmorten <morten.with@gmail.com>2021-02-18 23:01:46 +0100
commit82322293fe65682c32ee18a82296e8727f42d788 (patch)
tree7725ea674d223b8d2bb82c2f671632a08891d768 /src/core/re3.cpp
parentupdate librw (diff)
downloadre3-82322293fe65682c32ee18a82296e8727f42d788.tar
re3-82322293fe65682c32ee18a82296e8727f42d788.tar.gz
re3-82322293fe65682c32ee18a82296e8727f42d788.tar.bz2
re3-82322293fe65682c32ee18a82296e8727f42d788.tar.lz
re3-82322293fe65682c32ee18a82296e8727f42d788.tar.xz
re3-82322293fe65682c32ee18a82296e8727f42d788.tar.zst
re3-82322293fe65682c32ee18a82296e8727f42d788.zip
Diffstat (limited to '')
-rw-r--r--src/core/re3.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 771a44f5..3d077ba1 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -1112,7 +1112,7 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con
strcat_s(re3_buff, re3_buffsize, "(Press Retry to debug the application)");
- nCode = ::MessageBoxA(nil, re3_buff, "RE3 Assertion Failed!",
+ nCode = ::MessageBoxA(nil, re3_buff, "RELCS Assertion Failed!",
MB_ABORTRETRYIGNORE|MB_ICONHAND|MB_SETFOREGROUND|MB_TASKMODAL);
if (nCode == IDABORT)
@@ -1133,7 +1133,7 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con
abort();
#else
// TODO
- printf("\nRE3 ASSERT FAILED\n\tFile: %s\n\tLine: %d\n\tFunction: %s\n\tExpression: %s\n",filename,lineno,func,expr);
+ printf("\nRELCS ASSERT FAILED\n\tFile: %s\n\tLine: %d\n\tFunction: %s\n\tExpression: %s\n",filename,lineno,func,expr);
assert(false);
#endif
}
@@ -1185,14 +1185,14 @@ void re3_usererror(const char *format, ...)
vsprintf_s(re3_buff, re3_buffsize, format, va);
va_end(va);
- ::MessageBoxA(nil, re3_buff, "RE3 Error!",
+ ::MessageBoxA(nil, re3_buff, "RELCS Error!",
MB_OK|MB_ICONHAND|MB_SETFOREGROUND|MB_TASKMODAL);
raise(SIGABRT);
_exit(3);
#else
vsprintf(re3_buff, format, va);
- printf("\nRE3 Error!\n\t%s\n",re3_buff);
+ printf("\nRELCS Error!\n\t%s\n",re3_buff);
assert(false);
#endif
}