Removed unnecessary static variable.

This commit is contained in:
hiker 2014-09-18 07:48:31 +10:00
parent 66da6d9435
commit 8c3beef69b
2 changed files with 1 additions and 2 deletions

View File

@ -45,7 +45,6 @@
#include "race/race_manager.hpp"
#include "utils/constants.hpp"
std::map<std::string, SFXBase*> SFXManager::m_quick_sounds;
SFXManager *SFXManager::m_sfx_manager;
/** Static function to create the singleton sfx manager.

View File

@ -95,7 +95,7 @@ private:
std::vector<SFXBase*> m_all_sfx;
/** To play non-positional sounds without having to create a new object for each */
static std::map<std::string, SFXBase*> m_quick_sounds;
std::map<std::string, SFXBase*> m_quick_sounds;
/** listener vector (position vector + up vector) */
float m_listenerVec[6];