summaryrefslogtreecommitdiffstats
path: root/src/core/common.h
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2020-05-07 08:26:16 +0200
committerFire-Head <Fire-Head@users.noreply.github.com>2020-05-07 08:26:16 +0200
commit12a3499ca365756a77958d616423aca39a23234b (patch)
tree654c8d351a182be99959a3a36cced2ddeab6a63b /src/core/common.h
parentbb std::string (diff)
downloadre3-12a3499ca365756a77958d616423aca39a23234b.tar
re3-12a3499ca365756a77958d616423aca39a23234b.tar.gz
re3-12a3499ca365756a77958d616423aca39a23234b.tar.bz2
re3-12a3499ca365756a77958d616423aca39a23234b.tar.lz
re3-12a3499ca365756a77958d616423aca39a23234b.tar.xz
re3-12a3499ca365756a77958d616423aca39a23234b.tar.zst
re3-12a3499ca365756a77958d616423aca39a23234b.zip
Diffstat (limited to 'src/core/common.h')
-rw-r--r--src/core/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h
index 18f4715c..66a3ad81 100644
--- a/src/core/common.h
+++ b/src/core/common.h
@@ -209,6 +209,7 @@ void mysrand(unsigned int seed);
void re3_debug(const char *format, ...);
void re3_trace(const char *filename, unsigned int lineno, const char *func, const char *format, ...);
void re3_assert(const char *expr, const char *filename, unsigned int lineno, const char *func);
+void re3_usererror(const char *format, ...);
#define DEBUGBREAK() __debugbreak();
@@ -216,6 +217,7 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con
#define DEV(f, ...) re3_debug("[DEV]: " f, ## __VA_ARGS__)
#define TRACE(f, ...) re3_trace(__FILE__, __LINE__, __FUNCTION__, f, ## __VA_ARGS__)
#define Error(f, ...) re3_debug("[ERROR]: " f, ## __VA_ARGS__)
+#define USERERROR(f, ...) re3_usererror(f, ## __VA_ARGS__)
#define assert(_Expression) (void)( (!!(_Expression)) || (re3_assert(#_Expression, __FILE__, __LINE__, __FUNCTION__), 0) )
#define ASSERT assert