From 72fbb6a0c4c6ab36290064e6e028f7cc9f737806 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Tue, 5 Feb 2008 07:45:17 +0000 Subject: [PATCH] Fixed watchdogs when not explicitly specified. --- src/emu/cpuexec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/cpuexec.c b/src/emu/cpuexec.c index c67677eadb5..11d0eb766ee 100644 --- a/src/emu/cpuexec.c +++ b/src/emu/cpuexec.c @@ -261,6 +261,7 @@ static void cpuexec_reset(running_machine *machine) /* set up the watchdog timer; only start off enabled if explicitly configured */ watchdog_enabled = (machine->drv->watchdog_vblank_count != 0 || attotime_compare(machine->drv->watchdog_time, attotime_zero) != 0); watchdog_reset(machine); + watchdog_enabled = TRUE; /* first pass over CPUs */ for (cpunum = 0; cpunum < cpu_gettotalcpu(); cpunum++)