disable AddFakeSound

This commit is contained in:
Glenn Maynard
2004-01-14 00:10:34 +00:00
parent e5af156af5
commit b6d77c0167
2 changed files with 4 additions and 2 deletions
@@ -141,7 +141,8 @@ void RageSound_ALSA9::StartMixing(RageSound *snd)
if( i == stream_pool.size() ) if( i == stream_pool.size() )
{ {
/* We don't have a free sound buffer. Fake it. */ /* We don't have a free sound buffer. Fake it. */
SOUNDMAN->AddFakeSound(snd); /* XXX: too big of a hack for too rare of a case */
// SOUNDMAN->AddFakeSound(snd);
return; return;
} }
@@ -259,7 +259,8 @@ void RageSound_DSound::StartMixing(RageSound *snd)
if(i == stream_pool.size()) { if(i == stream_pool.size()) {
/* We don't have a free sound buffer. Fake it. */ /* We don't have a free sound buffer. Fake it. */
SOUNDMAN->AddFakeSound(snd); /* XXX: too big of a hack for too rare of a case */
// SOUNDMAN->AddFakeSound(snd);
return; return;
} }