From 07ae0079803ed63224f7eebd992256191ca59fa3 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Mon, 27 Aug 2018 05:53:43 -0400 Subject: [PATCH] Remove unused methods (for now?) --- src/sdl/mixer_sound.c | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c index 3bb8c709d..60ab196e6 100644 --- a/src/sdl/mixer_sound.c +++ b/src/sdl/mixer_sound.c @@ -562,33 +562,6 @@ void I_ShutdownMusic(void) music = NULL; } -#ifdef HAVE_MIXERX -UINT8 I_SetMidiPlayer(int player) -{ - return Mix_SetMidiPlayer(player); -} - -UINT8 I_GetMidiPlayer(void) -{ - return Mix_GetMidiPlayer(); -} - -boolean I_SetMidiSoundfontPath(const char *path) -{ - return Mix_SetSoundFonts(path); -} - -const char *I_GetMidiSoundfontPath(void) -{ - return Mix_GetSoundFonts(); -} - -void I_SetMidiTimidityPath(const char *path) -{ - Mix_Timidity_addToPathList(path); -} -#endif - /// ------------------------ /// Music Properties /// ------------------------