diff options
author | 2016-11-12 09:11:54 +0100 | |
---|---|---|
committer | 2016-11-12 09:12:36 +0100 | |
commit | 6b18f9043848ad031373df174609b3b3e0e28be3 (patch) | |
tree | 43a1050adfdafe97ec512c89e2bc75273f820a6f /src/emu/video | |
parent | e71e37e54f3df6bcd77aaaec5aac18db082b81a2 (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.cpp | 4 |
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 ); |