Fix missing commas and missed interface

This commit is contained in:
Sryder 2018-10-14 10:14:07 +01:00
parent 6184f91dd3
commit 3886888b30
3 changed files with 4 additions and 3 deletions

View File

@ -21,13 +21,14 @@ void I_ShutdownSound(void){}
// SFX I/O // SFX I/O
// //
INT32 I_StartSound(sfxenum_t id, INT32 vol, INT32 sep, INT32 pitch, INT32 priority) INT32 I_StartSound(sfxenum_t id, INT32 vol, INT32 sep, INT32 pitch, INT32 priority, INT32 channel)
{ {
(void)id; (void)id;
(void)vol; (void)vol;
(void)sep; (void)sep;
(void)pitch; (void)pitch;
(void)priority; (void)priority;
(void)channel;
return -1; return -1;
} }

View File

@ -165,7 +165,7 @@ INT32 I_StartSound ( sfxenum_t id,
INT32 vol, INT32 vol,
INT32 sep, INT32 sep,
INT32 pitch, INT32 pitch,
INT32 priority INT32 priority,
INT32 channel) INT32 channel)
{ {
int voice; int voice;

View File

@ -538,7 +538,7 @@ INT32 I_StartSound (sfxenum_t id,
INT32 vol, INT32 vol,
INT32 sep, INT32 sep,
INT32 pitch, INT32 pitch,
INT32 priority INT32 priority,
INT32 channel) INT32 channel)
{ {
HRESULT hr; HRESULT hr;