mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-16 05:35:41 -04: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…
x
Reference in New Issue
Block a user