GCC you sneaky...

This commit is contained in:
leak
2014-07-09 20:59:01 +02:00
parent da28c24d8e
commit dd28f643b2

View File

@@ -83,9 +83,9 @@
#include "TransportMgr.h"
std::atomic<bool> World::m_stopEvent = false;
std::atomic<bool> World::m_stopEvent(false);
uint8 World::m_ExitCode = SHUTDOWN_EXIT_CODE;
std::atomic_uint32_t World::m_worldLoopCounter = 0;
std::atomic<uint32> World::m_worldLoopCounter(0);
float World::m_MaxVisibleDistanceOnContinents = DEFAULT_VISIBILITY_DISTANCE;
float World::m_MaxVisibleDistanceInInstances = DEFAULT_VISIBILITY_INSTANCE;