summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/raiden2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/raiden2.c')
-rw-r--r--src/mame/drivers/raiden2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/raiden2.c b/src/mame/drivers/raiden2.c
index 52f20e276c6..77fef5f9f9f 100644
--- a/src/mame/drivers/raiden2.c
+++ b/src/mame/drivers/raiden2.c
@@ -473,7 +473,8 @@ struct _cop_state
static cop_state cop_data;
-#define COP_LOG(x) logerror x
+#define VERBOSE 1
+#define COP_LOG(x) do { if (VERBOSE) logerror x; } while (0)