mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 12:50:44 +00:00
Update interfaces I_UpdateMumble function
This commit is contained in:
parent
7fb530fd18
commit
f3e8c01565
3 changed files with 15 additions and 6 deletions
|
@ -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, ...)
|
void I_OutputMsg(const char *fmt, ...)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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,
|
// Allocates the base zone memory,
|
||||||
|
|
|
@ -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, ...)
|
void I_OutputMsg(const char *error, ...)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue