summaryrefslogtreecommitdiff
path: root/includes/Rts.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Rts.h')
-rw-r--r--includes/Rts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/Rts.h b/includes/Rts.h
index 0599df655c..fc010d4d97 100644
--- a/includes/Rts.h
+++ b/includes/Rts.h
@@ -267,13 +267,13 @@ TICK_VAR(2)
Assertions and Debuggery
-------------------------------------------------------------------------- */
-#define IF_RTSFLAGS(c,s) if (RtsFlags.c) { s; }
+#define IF_RTSFLAGS(c,s) if (RtsFlags.c) { s; } doNothing()
#ifdef DEBUG
#if IN_STG_CODE
-#define IF_DEBUG(c,s) if (RtsFlags[0].DebugFlags.c) { s; }
+#define IF_DEBUG(c,s) if (RtsFlags[0].DebugFlags.c) { s; } doNothing()
#else
-#define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; }
+#define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; } doNothing()
#endif
#else
#define IF_DEBUG(c,s) doNothing()