Removed unnecessary static variable.
This commit is contained in:
parent
66da6d9435
commit
8c3beef69b
@ -45,7 +45,6 @@
|
|||||||
#include "race/race_manager.hpp"
|
#include "race/race_manager.hpp"
|
||||||
#include "utils/constants.hpp"
|
#include "utils/constants.hpp"
|
||||||
|
|
||||||
std::map<std::string, SFXBase*> SFXManager::m_quick_sounds;
|
|
||||||
SFXManager *SFXManager::m_sfx_manager;
|
SFXManager *SFXManager::m_sfx_manager;
|
||||||
|
|
||||||
/** Static function to create the singleton sfx manager.
|
/** Static function to create the singleton sfx manager.
|
||||||
|
@ -95,7 +95,7 @@ private:
|
|||||||
std::vector<SFXBase*> m_all_sfx;
|
std::vector<SFXBase*> m_all_sfx;
|
||||||
|
|
||||||
/** To play non-positional sounds without having to create a new object for each */
|
/** 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) */
|
/** listener vector (position vector + up vector) */
|
||||||
float m_listenerVec[6];
|
float m_listenerVec[6];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user