CDROM: Ignore pending setloc after read/play

Fixes games which send a second Setloc after reading, e.g. Army Men -
Sarge's Heroes.
pull/520/head
Connor McLaughlin 6 years ago
parent a3e8f40a09
commit f856a8ad65

@ -1496,7 +1496,7 @@ void CDROM::BeginReading(TickCount ticks_late /* = 0 */, bool after_seek /* = fa
Log_DebugPrintf("Starting reading @ LBA %u", m_current_lba);
ClearSectorBuffers();
if (m_setloc_pending)
if (!after_seek && m_setloc_pending)
{
BeginSeeking(true, true, false);
return;

Loading…
Cancel
Save