mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
- Confirm SDL CD audio looping fix from Robert B�uml.
(icculus patchset #12)
This commit is contained in:
parent
86fdb54929
commit
2240ed20f2
1 changed files with 25 additions and 30 deletions
51
src/cd_sdl.c
51
src/cd_sdl.c
|
@ -1,29 +1,25 @@
|
||||||
/*
|
/* $Id$
|
||||||
snd_sdl.c
|
*
|
||||||
|
* CD code taken from SDLQuake and modified to work with Quake2
|
||||||
CD code taken from SDLQuake and modified to work with Quake2
|
*
|
||||||
Robert Bäuml 2001-12-25
|
* Copyright (c) 2001 Robert Bäuml.
|
||||||
W.P. van Paassen 2002-01-06
|
* Copyright (c) 2002 W.P. van Paassen.
|
||||||
|
* Copyright (c) 2002 The Quakeforge Project.
|
||||||
This program is free software; you can redistribute it and/or
|
*
|
||||||
modify it under the terms of the GNU General Public License
|
* This program is free software; you can redistribute it and/or
|
||||||
as published by the Free Software Foundation; either version 2
|
* modify it under the terms of the GNU General Public License
|
||||||
of the License, or (at your option) any later version.
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
This program is distributed in the hope that it will be useful,
|
*
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* This program is distributed in the hope that it will be useful,
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
See the GNU General Public License for more details.
|
*
|
||||||
|
* See the GNU General Public License for more details.
|
||||||
You should have received a copy of the GNU General Public License
|
*
|
||||||
along with this program; if not, write to:
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
Free Software Foundation, Inc.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
59 Temple Place - Suite 330
|
|
||||||
Boston, MA 02111-1307, USA
|
|
||||||
|
|
||||||
$Id$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -223,8 +219,7 @@ void CDAudio_Update()
|
||||||
|
|
||||||
if(playLooping &&
|
if(playLooping &&
|
||||||
(SDL_CDStatus(cd_id) != CD_PLAYING) &&
|
(SDL_CDStatus(cd_id) != CD_PLAYING) &&
|
||||||
(SDL_CDStatus(cd_id) != CD_PAUSED))
|
(SDL_CDStatus(cd_id) != CD_PAUSED)) {
|
||||||
{
|
|
||||||
CDAudio_Play(lastTrack, true);
|
CDAudio_Play(lastTrack, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue