diff options
Diffstat (limited to 'src/devices/machine/watchdog.cpp')
-rw-r--r-- | src/devices/machine/watchdog.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/devices/machine/watchdog.cpp b/src/devices/machine/watchdog.cpp index ad0dba7b5be..ef6ba30f072 100644 --- a/src/devices/machine/watchdog.cpp +++ b/src/devices/machine/watchdog.cpp @@ -144,14 +144,7 @@ void watchdog_timer_device::watchdog_enable(int state) void watchdog_timer_device::watchdog_fired() { - logerror("Reset caused by the watchdog!!!\n"); - - bool verbose = machine().options().verbose(); -#ifdef MAME_DEBUG - verbose = true; -#endif - if (verbose) - popmessage("Reset caused by the watchdog!!!\n"); + logerror("watchdog_fired: reset issued\n"); machine().schedule_soft_reset(); } |