aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/snd_mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/client/snd_mem.c')
-rw-r--r--code/client/snd_mem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/code/client/snd_mem.c b/code/client/snd_mem.c
index 23c413d..5ac4f1d 100644
--- a/code/client/snd_mem.c
+++ b/code/client/snd_mem.c
@@ -56,7 +56,7 @@ void SND_free(sndBuffer *v) {
inUse += sizeof(sndBuffer);
}
-sndBuffer* SND_malloc() {
+sndBuffer* SND_malloc(void) {
sndBuffer *v;
redo:
if (freelist == NULL) {
@@ -73,7 +73,7 @@ redo:
return v;
}
-void SND_setup() {
+void SND_setup(void) {
sndBuffer *p, *q;
cvar_t *cv;
int scs;
@@ -399,6 +399,6 @@ qboolean S_LoadSound( sfx_t *sfx )
return qtrue;
}
-void S_DisplayFreeMemory() {
+void S_DisplayFreeMemory(void) {
Com_Printf("%d bytes free sound buffer memory, %d total used\n", inUse, totalInUse);
}