Skip to content

Commit

Permalink
Update interfaces I_UpdateMumble function
Browse files Browse the repository at this point in the history
  • Loading branch information
alama committed Apr 18, 2014
1 parent 7fb530f commit f3e8c01
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions src/android/i_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,13 @@ void I_SetupMumble(void)
{
}

void I_UpdateMumble(const MumblePos_t *MPos)
#ifndef NOMUMBLE
void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
{
(void)MPos;
(void)mobj;
(void)listener;
}
#endif

void I_OutputMsg(const char *fmt, ...)
{
Expand Down
7 changes: 5 additions & 2 deletions src/djgppdos/i_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,13 @@ void I_SetupMumble(void)
{
}

void I_UpdateMumble(const MumblePos_t *MPos)
#ifndef NOMUMBLE
void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
{
(void)MPos;
(void)mobj;
(void)listener;
}
#endif

//
// Allocates the base zone memory,
Expand Down
7 changes: 5 additions & 2 deletions src/nds/i_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,13 @@ void I_SetupMumble(void)
{
}

void I_UpdateMumble(const MumblePos_t *MPos)
#ifndef NOMUMBLE
void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
{
(void)MPos;
(void)mobj;
(void)listener;
}
#endif

void I_OutputMsg(const char *error, ...)
{
Expand Down

0 comments on commit f3e8c01

Please sign in to comment.