aboutsummaryrefslogtreecommitdiff
path: root/src/dolphin/Log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphin/Log.h')
-rw-r--r--src/dolphin/Log.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/dolphin/Log.h b/src/dolphin/Log.h
index 21e69a5..a7f4b6a 100644
--- a/src/dolphin/Log.h
+++ b/src/dolphin/Log.h
@@ -4,12 +4,13 @@
#include <stdio.h>
-#define PanicAlert(msg) \
- do \
- { \
- printf("%s\n", msg); \
- Crash(); \
- } while (false)
+#define PanicAlert(fmt, ...) \
+ do \
+ { \
+ printf(fmt "\n", ## __VA_ARGS__); \
+ abort(); \
+ } while (false)
+
#define DYNA_REC 0