mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-10 07:11:44 +00:00
allow null_snddma to be used with snd_dma
This commit is contained in:
parent
e454e9ebd7
commit
36099f2c19
1 changed files with 5 additions and 3 deletions
|
@ -4,8 +4,6 @@
|
|||
|
||||
#include "../client/client.h"
|
||||
|
||||
qboolean gbInsideLoadSound = qfalse; // important to default to this!!!
|
||||
|
||||
qboolean SNDDMA_Init(void)
|
||||
{
|
||||
return qfalse;
|
||||
|
@ -28,6 +26,9 @@ void SNDDMA_Submit(void)
|
|||
{
|
||||
}
|
||||
|
||||
#ifdef DEDICATED
|
||||
qboolean gbInsideLoadSound = qfalse; // important to default to this!!!
|
||||
|
||||
sfxHandle_t S_RegisterSound( const char *name ) {
|
||||
return 0;
|
||||
}
|
||||
|
@ -46,4 +47,5 @@ qboolean SND_RegisterAudio_LevelLoadEnd(qboolean something)
|
|||
int SND_FreeOldestSound(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue