mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-10 12:01:43 +00:00
cd fix needed fo gameplay
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@292 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
627ffd4f64
commit
6beef00279
1 changed files with 3 additions and 1 deletions
|
@ -437,8 +437,10 @@ void CDAudio_Update(void)
|
||||||
if (curstat != CD_PLAYING && curstat != CD_PAUSED)
|
if (curstat != CD_PLAYING && curstat != CD_PAUSED)
|
||||||
{
|
{
|
||||||
endOfTrack = -1.0;
|
endOfTrack = -1.0;
|
||||||
if (playLooping)
|
if (playLooping) {
|
||||||
|
playing = false;
|
||||||
CDAudio_Play(playTrack, true);
|
CDAudio_Play(playTrack, true);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
CDAudio_Next();
|
CDAudio_Next();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue