summaryrefslogtreecommitdiff
path: root/base.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-11-23 18:29:58 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-11-23 18:29:58 -0500
commit55d0ece0a9072ca409bdf6ff2f3b6d0b268e2952 (patch)
tree5df0cbfacf3d9442ddb34fdf5fb3b59f4e74d82e /base.h
parent5e458dff3bcc832b0b28d83bd3ef482174d1dc09 (diff)
unicode text rendering working
Diffstat (limited to 'base.h')
-rw-r--r--base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base.h b/base.h
index 8327fdb..62c7117 100644
--- a/base.h
+++ b/base.h
@@ -40,7 +40,7 @@ typedef unsigned long ulong;
#if DEBUG
#if __unix__
-#define debug_println printf
+#define debug_println(...) printf(__VA_ARGS__), printf("\n")
#else // __unix__
static void debug_println(char const *fmt, ...) {
char buf[256];