diff options
author | TrullyONE <none@none> | 2008-12-20 11:16:20 +0200 |
---|---|---|
committer | TrullyONE <none@none> | 2008-12-20 11:16:20 +0200 |
commit | dbbfe36cb0f4ea53d879576e54a52d3ff1b7913f (patch) | |
tree | de9f6036e8c454341e83214e1525207c2c5e17f3 /src | |
parent | ac9e2ac6d28c69f37bdaa49e2226a9cf66670f9b (diff) |
*Build fix. Missing initialization of new static variable added.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/World.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index 4e9a9a7d41b..baecc8871fb 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -70,6 +70,7 @@ volatile bool World::m_stopEvent = false; uint8 World::m_ExitCode = SHUTDOWN_EXIT_CODE; volatile uint32 World::m_worldLoopCounter = 0; +float World::m_MaxVisibleDistance = DEFAULT_VISIBILITY_DISTANCE; float World::m_MaxVisibleDistanceForCreature = DEFAULT_VISIBILITY_DISTANCE; float World::m_MaxVisibleDistanceForPlayer = DEFAULT_VISIBILITY_DISTANCE; float World::m_MaxVisibleDistanceForObject = DEFAULT_VISIBILITY_DISTANCE; |