summaryrefslogtreecommitdiff
path: root/src/heretic/s_sound.h
diff options
context:
space:
mode:
authorSimon Howard2008-11-23 17:39:11 +0000
committerSimon Howard2008-11-23 17:39:11 +0000
commit828b09914106de7dc00199fa810278e12988324b (patch)
tree5930baea968b2b3c84cf364df7d046e1fc3c7469 /src/heretic/s_sound.h
parentae18d8c4b6f7f918aa5ec496ca32899793cbe41e (diff)
downloadchocolate-doom-828b09914106de7dc00199fa810278e12988324b.tar.gz
chocolate-doom-828b09914106de7dc00199fa810278e12988324b.tar.bz2
chocolate-doom-828b09914106de7dc00199fa810278e12988324b.zip
Shut up compiler warnings in Heretic code.
Subversion-branch: /branches/raven-branch Subversion-revision: 1385
Diffstat (limited to 'src/heretic/s_sound.h')
-rw-r--r--src/heretic/s_sound.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heretic/s_sound.h b/src/heretic/s_sound.h
index c000d2a9..e678fc99 100644
--- a/src/heretic/s_sound.h
+++ b/src/heretic/s_sound.h
@@ -31,9 +31,9 @@ extern int snd_MaxVolume;
extern int snd_MusicVolume;
void S_Start(void);
-void S_StartSound(mobj_t * origin, int sound_id);
-void S_StartSoundAtVolume(mobj_t * origin, int sound_id, int volume);
-void S_StopSound(mobj_t * origin);
+void S_StartSound(void *origin, int sound_id);
+void S_StartSoundAtVolume(void *origin, int sound_id, int volume);
+void S_StopSound(void *origin);
void S_PauseSound(void);
void S_ResumeSound(void);
void S_UpdateSounds(mobj_t * listener);