From 7e9d3cedff68bea79eba7750ad820bf3c0878697 Mon Sep 17 00:00:00 2001 From: smf- Date: Sun, 4 Sep 2016 13:35:01 +0100 Subject: [PATCH] fix for "warning C4390: ';': empty controlled statement found; is this the intent?" with MSVC (nw) --- src/mame/drivers/didact.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/didact.cpp b/src/mame/drivers/didact.cpp index 0b4e88cc580..96d04499136 100644 --- a/src/mame/drivers/didact.cpp +++ b/src/mame/drivers/didact.cpp @@ -47,11 +47,11 @@ #define VERBOSE 0 #define LOGPRINT(x) do { if (VERBOSE) logerror x; } while (0) -#define LOG(x) +#define LOG(x) {} #define LOGSCAN(x) LOGPRINT(x) -#define LOGSCREEN(x) -#define RLOG(x) -#define LOGCS(x) +#define LOGSCREEN(x) {} +#define RLOG(x) {} +#define LOGCS(x) {} #if VERBOSE >= 2 #define logerror printf