mirror of
https://github.com/holub/mame
synced 2025-06-03 03:16:30 +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. */
|
/* Zero Divide wants this TODO: timings. */
|
||||||
if((cd_fad_seek - cd_curfad) > (750*cd_speed))
|
if((cd_fad_seek - cd_curfad) > (750*cd_speed))
|
||||||
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);
|
cd_curfad -= (750*cd_speed);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user