use RageSoundBase

This commit is contained in:
Glenn Maynard
2004-01-15 02:33:41 +00:00
parent 3633d424d7
commit fed157e934
+2 -1
View File
@@ -7,6 +7,7 @@
#include "RageThreads.h" #include "RageThreads.h"
class RageSound; class RageSound;
class RageSoundBase;
class RageSoundDriver; class RageSoundDriver;
class RageSoundManager class RageSoundManager
@@ -16,7 +17,7 @@ class RageSoundManager
set<RageSound *> owned_sounds; set<RageSound *> owned_sounds;
/* Set of sounds that are finished and should be deleted. */ /* Set of sounds that are finished and should be deleted. */
set<RageSound *> sounds_to_delete; set<RageSoundBase *> sounds_to_delete;
RageSoundDriver *driver; RageSoundDriver *driver;