mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-18 10:02:12 +00:00
snd_dma überarbeitet was die Kommentare und die Formatierung betrifft
This commit is contained in:
parent
2d6df87745
commit
0c4a7d291f
3 changed files with 398 additions and 535 deletions
|
@ -19,3 +19,10 @@ Yamagi-Q2 credits ins menü
|
||||||
header guards!
|
header guards!
|
||||||
|
|
||||||
leerzeilen am ende jeder datei (hilft alten compilern und einiges IDEs)
|
leerzeilen am ende jeder datei (hilft alten compilern und einiges IDEs)
|
||||||
|
|
||||||
|
cvar s_primary ist überflüssig
|
||||||
|
|
||||||
|
256 statt 128 sounds
|
||||||
|
|
||||||
|
Voice over Network ist disfunktional auf nicht-windows systemen und eh
|
||||||
|
schrott. ab damit in den müll?
|
||||||
|
|
|
@ -1,22 +1,28 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 1997-2001 Id Software, Inc.
|
* Copyright (C) 1997-2001 Id Software, Inc.
|
||||||
|
*
|
||||||
This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or modify
|
||||||
modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU General Public License as published by
|
||||||
as published by the Free Software Foundation; either version 2
|
* the Free Software Foundation; either version 2 of the License, or (at
|
||||||
of the License, or (at your option) any later version.
|
* your option) any later version.
|
||||||
|
*
|
||||||
This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, but
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
* 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
|
* You should have received a copy of the GNU General Public License
|
||||||
along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
* 02111-1307, USA.
|
||||||
*/
|
*
|
||||||
|
* =======================================================================
|
||||||
|
*
|
||||||
|
* Function prototypes for the Audio-CD playback
|
||||||
|
*
|
||||||
|
* =======================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
int CDAudio_Init(void);
|
int CDAudio_Init(void);
|
||||||
void CDAudio_Shutdown(void);
|
void CDAudio_Shutdown(void);
|
||||||
|
@ -25,3 +31,4 @@ void CDAudio_Stop(void);
|
||||||
void CDAudio_Update(void);
|
void CDAudio_Update(void);
|
||||||
void CDAudio_Activate (qboolean active);
|
void CDAudio_Activate (qboolean active);
|
||||||
void CDAudio_RandomPlay(void);
|
void CDAudio_RandomPlay(void);
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue