diff --git a/stepmania/src/RageSoundManager.cpp b/stepmania/src/RageSoundManager.cpp index 03dae3f646..f0d3a7b13f 100644 --- a/stepmania/src/RageSoundManager.cpp +++ b/stepmania/src/RageSoundManager.cpp @@ -10,8 +10,6 @@ #include "RageLog.h" #include "RageTimer.h" -#include "RageSounds.h" - #include "arch/arch.h" #include "arch/Sound/RageSoundDriver.h" #include "SDL_audio.h" @@ -258,20 +256,6 @@ void RageSoundManager::MixAudio(Sint16 *dst, const Sint16 *src, Uint32 len, floa } -void RageSoundManager::PlayMusic(CString file, bool force_loop, float start_sec, float length_sec, float fade_len) -{ - SOUND->PlayMusic(file, force_loop, start_sec, length_sec, fade_len); -} -void RageSoundManager::StopMusic() -{ - SOUND->StopMusic(); -} - -CString RageSoundManager::GetMusicPath() const -{ - return SOUND->GetMusicPath(); -} - void RageSoundManager::SetPrefs(float MixVol) { MixVolume = MixVol; diff --git a/stepmania/src/RageSoundManager.h b/stepmania/src/RageSoundManager.h index ce6287bba4..1b8089dc41 100644 --- a/stepmania/src/RageSoundManager.h +++ b/stepmania/src/RageSoundManager.h @@ -60,11 +60,6 @@ public: * itself to this. */ set all_sounds; - /* stubs for music */ - void PlayMusic(CString file, bool force_loop = false, float start_sec = -1, float length_sec = -1, float fade_len = 0); - void StopMusic(); - CString GetMusicPath() const; - static void MixAudio(Sint16 *dst, const Sint16 *src, Uint32 len, float volume); };