CDROM: Update position when double-seeking

Doesn't fix anything I'm aware of, but makes sense.
This commit is contained in:
Connor McLaughlin 2020-05-28 02:41:38 +10:00
parent 2e64f77d2b
commit 2264849151
1 changed files with 6 additions and 0 deletions

View File

@ -777,6 +777,9 @@ void CDROM::ExecuteCommand()
}
else
{
if (IsSeeking())
UpdatePositionWhileSeeking();
BeginReading();
}
}
@ -805,6 +808,9 @@ void CDROM::ExecuteCommand()
}
else
{
if (IsSeeking())
UpdatePositionWhileSeeking();
BeginPlaying(track);
}
}