Working on clean pausing support. (This will break the ALSA and DSound hardware builds until they're updated, soon.)

This commit is contained in:
Glenn Maynard
2005-03-10 22:49:28 +00:00
parent 93947f375a
commit ef68b4acdd
7 changed files with 54 additions and 0 deletions
+6
View File
@@ -643,6 +643,12 @@ void RageSound::Stop()
StopPlaying();
}
bool RageSound::Pause( bool bPause )
{
ASSERT( Sample );
return SOUNDMAN->Pause( this, bPause );
}
float RageSound::GetLengthSeconds()
{