remove stubs

This commit is contained in:
Glenn Maynard
2003-07-26 23:09:56 +00:00
parent fe489cd281
commit 60e8ec708a
2 changed files with 0 additions and 21 deletions
-16
View File
@@ -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;
-5
View File
@@ -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);
};