This commit is contained in:
Glenn Maynard
2004-12-04 21:20:02 +00:00
parent 157653845e
commit 0979c9dcee
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ void RageSound::Unload()
databuf.clear(); databuf.clear();
} }
bool RageSound::IsLoaded() bool RageSound::IsLoaded() const
{ {
return Sample != NULL; return Sample != NULL;
} }
+1 -1
View File
@@ -97,7 +97,7 @@ public:
* be set up only if needed. Doesn't fail. */ * be set up only if needed. Doesn't fail. */
void LoadSoundReader( SoundReader *pSound ); void LoadSoundReader( SoundReader *pSound );
void Unload(); void Unload();
bool IsLoaded(); bool IsLoaded() const;
void StartPlaying(); void StartPlaying();
void StopPlaying(); void StopPlaying();