Fixing compilation error; cannot subtract from a bool (nw)

This commit is contained in:
Nathan Woods 2013-02-22 11:21:27 +00:00
parent f23413860a
commit 6370e160b6

View File

@ -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
{