mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-19 06:51:11 +00:00
Just a stub for now.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@599 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
f7834e9c24
commit
3d91366a30
1 changed files with 33 additions and 0 deletions
33
engine/client/snd_sdl.c
Normal file
33
engine/client/snd_sdl.c
Normal file
|
@ -0,0 +1,33 @@
|
|||
#include "quakedef.h"
|
||||
|
||||
soundcardinfo_t *sndcardinfo;
|
||||
|
||||
int snd_firsttime = 0;
|
||||
|
||||
int aimedforguid;
|
||||
|
||||
void SNDDMA_Submit(soundcardinfo_t *sc)
|
||||
{
|
||||
}
|
||||
void SNDDMA_Shutdown(soundcardinfo_t *sc)
|
||||
{
|
||||
}
|
||||
int SNDDMA_GetDMAPos(soundcardinfo_t *sc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void S_UpdateCapture(void) //any ideas how to get microphone input?
|
||||
{
|
||||
}
|
||||
|
||||
int SNDDMA_Init(soundcardinfo_t *sc)
|
||||
{
|
||||
Con_Printf("SDL has no sound code\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void SNDDMA_SetUnderWater(qboolean underwater)
|
||||
{
|
||||
}
|
Loading…
Reference in a new issue