remove stubs
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -60,11 +60,6 @@ public:
|
||||
* itself to this. */
|
||||
set<RageSound *> 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);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user