From 5f39c19227f267f57b37392f01619137233d3f1f Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Wed, 10 Dec 2008 17:41:30 +0000 Subject: [PATCH] Fix compile error. --- src/emu/cpu/sh4/sh4.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/emu/cpu/sh4/sh4.c b/src/emu/cpu/sh4/sh4.c index 5ea24e8ab3c..8c026b6fba4 100644 --- a/src/emu/cpu/sh4/sh4.c +++ b/src/emu/cpu/sh4/sh4.c @@ -3240,7 +3240,6 @@ static CPU_RESET( sh4 ) void *tsaved[4]; emu_timer *tsave[5]; UINT32 *m; - int cpunum; int save_is_slave; int savecpu_clock, savebus_clock, savepm_clock; @@ -3290,7 +3289,7 @@ static CPU_RESET( sh4 ) sh4_default_exception_priorities(sh4); memset(sh4->exception_requesting, 0, sizeof(sh4->exception_requesting)); - timer_adjust_oneshot(sh4->rtc_timer, ATTOTIME_IN_HZ(128), cpunum); + timer_adjust_oneshot(sh4->rtc_timer, ATTOTIME_IN_HZ(128), 0); sh4->m[RCR2] = 0x09; sh4->m[TCOR0] = 0xffffffff; sh4->m[TCNT0] = 0xffffffff;