mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00
Fixing compilation error; cannot subtract from a bool (nw)
This commit is contained in:
parent
f23413860a
commit
6370e160b6
@ -2453,7 +2453,7 @@ void saturn_state::cd_playdata( void )
|
||||
/* Zero Divide wants this TODO: timings. */
|
||||
if((cd_fad_seek - cd_curfad) > (750*cd_speed))
|
||||
cd_curfad += (750*cd_speed);
|
||||
else if((cd_fad_seek < cd_curfad) < (-750*cd_speed))
|
||||
else if((cd_fad_seek - cd_curfad) < (-750*cd_speed))
|
||||
cd_curfad -= (750*cd_speed);
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user