diff options
author | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
commit | 2e127f7a30706dc1d40c65de22ff02851732da24 (patch) | |
tree | 91f7e8033e9296fdd8dbb2d5a761c9980cc36f18 /src/game/MapManager.cpp | |
parent | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (diff) |
Code style (game + scripts only):
"while(" --> "while ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/MapManager.cpp')
-rw-r--r-- | src/game/MapManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/MapManager.cpp b/src/game/MapManager.cpp index 8613a1a1de8..c0b3adf59fb 100644 --- a/src/game/MapManager.cpp +++ b/src/game/MapManager.cpp @@ -344,7 +344,7 @@ void MapManager::UnloadAll() for (MapMapType::iterator iter=i_maps.begin(); iter != i_maps.end(); ++iter) iter->second->UnloadAll(); - while(!i_maps.empty()) + while (!i_maps.empty()) { delete i_maps.begin()->second; i_maps.erase(i_maps.begin()); |