summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpuintrf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpuintrf.c')
-rw-r--r--src/emu/cpuintrf.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/emu/cpuintrf.c b/src/emu/cpuintrf.c
index 945aaaa6793..570b7ef9133 100644
--- a/src/emu/cpuintrf.c
+++ b/src/emu/cpuintrf.c
@@ -213,11 +213,7 @@ void minx_get_info(UINT32 state, cpuinfo *info);
#define VERBOSE 0
-#if VERBOSE
-#define LOG(x) logerror x
-#else
-#define LOG(x)
-#endif
+#define LOG(x) do { if (VERBOSE) logerror x; } while (0)