mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
CDROM: Update position when double-seeking
Doesn't fix anything I'm aware of, but makes sense.
This commit is contained in:
parent
2e64f77d2b
commit
2264849151
|
@ -777,6 +777,9 @@ void CDROM::ExecuteCommand()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (IsSeeking())
|
||||||
|
UpdatePositionWhileSeeking();
|
||||||
|
|
||||||
BeginReading();
|
BeginReading();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -805,6 +808,9 @@ void CDROM::ExecuteCommand()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (IsSeeking())
|
||||||
|
UpdatePositionWhileSeeking();
|
||||||
|
|
||||||
BeginPlaying(track);
|
BeginPlaying(track);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue