mirror of
https://github.com/holub/mame
synced 2025-10-04 08:28:39 +03:00
Fixed GCC compile error.
This commit is contained in:
parent
1fa0bfffe6
commit
aa92fc98fb
@ -301,7 +301,7 @@ static WRITE32_HANDLER( tms32031_control_w )
|
||||
|
||||
/* bit 0x200 selects internal clocking, which is 1/2 the main CPU clock rate */
|
||||
if (data & 0x200)
|
||||
timer_rate = (double)cpunum_get_clock(0) * 0.5;
|
||||
timer_rate = (double)(cpunum_get_clock(0) * 0.5);
|
||||
else
|
||||
timer_rate = 10000000.;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user