This commit is contained in:
Glenn Maynard
2004-01-14 01:41:32 +00:00
parent b6d77c0167
commit 6d4ddb2a2d
2 changed files with 0 additions and 6 deletions
-4
View File
@@ -28,8 +28,6 @@ RageSoundManager::RageSoundManager(CString drivers)
driver = MakeRageSoundDriver(drivers);
if(!driver)
RageException::Throw("Couldn't find a sound driver that works");
music = new RageSound;
} catch(...) {
SOUNDMAN = NULL;
throw;
@@ -38,8 +36,6 @@ RageSoundManager::RageSoundManager(CString drivers)
RageSoundManager::~RageSoundManager()
{
delete music;
/* Clear any sounds that we own and havn't freed yet. */
set<RageSound *>::iterator j = owned_sounds.begin();
while(j != owned_sounds.end())
-2
View File
@@ -31,8 +31,6 @@ class RageSoundManager
/* Prefs: */
float MixVolume;
RageSound *music;
public:
RageMutex lock;