update (Mac drivers untested)

This commit is contained in:
Glenn Maynard
2004-01-15 03:03:57 +00:00
parent 92684a90db
commit fda40a0efd
12 changed files with 43 additions and 43 deletions
@@ -133,7 +133,7 @@ bool RageSound_OSS::GetData()
return true;
}
void RageSound_OSS::StartMixing(RageSound *snd)
void RageSound_OSS::StartMixing(RageSoundBase *snd)
{
sound *s = new sound;
s->snd = snd;
@@ -162,7 +162,7 @@ void RageSound_OSS::Update(float delta)
}
}
void RageSound_OSS::StopMixing(RageSound *snd)
void RageSound_OSS::StopMixing(RageSoundBase *snd)
{
LockMutex L(SOUNDMAN->lock);
@@ -180,7 +180,7 @@ void RageSound_OSS::StopMixing(RageSound *snd)
sounds.erase(sounds.begin()+i, sounds.begin()+i+1);
}
int RageSound_OSS::GetPosition(const RageSound *snd) const
int RageSound_OSS::GetPosition(const RageSoundBase *snd) const
{
LockMutex L(SOUNDMAN->lock);