mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-26 14:30:48 +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!
|
||||
|
||||
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.
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
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
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
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 the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
*/
|
||||
* Copyright (C) 1997-2001 Id Software, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License 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
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* 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 the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* =======================================================================
|
||||
*
|
||||
* Function prototypes for the Audio-CD playback
|
||||
*
|
||||
* =======================================================================
|
||||
*/
|
||||
|
||||
int CDAudio_Init(void);
|
||||
void CDAudio_Shutdown(void);
|
||||
|
@ -25,3 +31,4 @@ void CDAudio_Stop(void);
|
|||
void CDAudio_Update(void);
|
||||
void CDAudio_Activate (qboolean active);
|
||||
void CDAudio_RandomPlay(void);
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue