From 953465543b08ade1d4d7c117cec6ca519d7af7f8 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Wed, 10 Dec 2008 17:16:16 +0000 Subject: [PATCH] Fatalerror in non-debug builds too. --- src/emu/cpuexec.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/emu/cpuexec.c b/src/emu/cpuexec.c index 7623b6ca2fa..20a6bf7e6c0 100644 --- a/src/emu/cpuexec.c +++ b/src/emu/cpuexec.c @@ -919,11 +919,9 @@ void cpu_set_input_line_and_vector(const device_config *device, int line, int st { cpu_class_data *classdata = get_safe_classtoken(device); -#ifdef MAME_DEBUG /* catch errors where people use PULSE_LINE for CPUs that don't support it */ if (state == PULSE_LINE && line != INPUT_LINE_NMI && line != INPUT_LINE_RESET) fatalerror("CPU %s: PULSE_LINE can only be used for NMI and RESET lines\n", device->tag); -#endif if (line >= 0 && line < MAX_INPUT_LINES) {