summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-12 09:11:54 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-12 09:12:36 +0100
commit6b18f9043848ad031373df174609b3b3e0e28be3 (patch)
tree43a1050adfdafe97ec512c89e2bc75273f820a6f /src/emu/video
parente71e37e54f3df6bcd77aaaec5aac18db082b81a2 (diff)
Revert "Added IS_ENABLED, so we have compiler check for non used part, it is checked but not compiled in (nw)"
This reverts commit c0407f073bf7afe26407c4add5cfeaf7104913c9.
Diffstat (limited to 'src/emu/video')
-rw-r--r--src/emu/video/resnet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/resnet.cpp b/src/emu/video/resnet.cpp
index 8213b15e0e9..1b467d016c4 100644
--- a/src/emu/video/resnet.cpp
+++ b/src/emu/video/resnet.cpp
@@ -201,7 +201,7 @@ double compute_resistor_weights(
}
/* debug code */
-if (IS_ENABLED(VERBOSE))
+if (VERBOSE)
{
osd_printf_info("compute_resistor_weights(): scaler = %15.10f\n",scale);
osd_printf_info("min val :%i max val:%i Total number of networks :%i\n", minval, maxval, networks_no );
@@ -391,7 +391,7 @@ double compute_resistor_net_outputs(
}
/* debug code */
-if (IS_ENABLED(VERBOSE))
+if (VERBOSE)
{
osd_printf_info("compute_resistor_net_outputs(): scaler = %15.10f\n",scale);
osd_printf_info("min val :%i max val:%i Total number of networks :%i\n", minval, maxval, networks_no );