medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 1ab85a95fddd55dcf261a925c41f431ecd030a3f
parent 6ff3fe1364d7196f7d428a16e263e1af4a9678e7
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon Aug 17 20:25:51 +0200

const static -> static const

Diffstat:
terrain_manager.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/terrain_manager.h b/terrain_manager.h @@ -9,9 +9,9 @@ class TerrainManager { private: - const static int TILE_SIZE = 128; - const static int REGION_SIZE = 5; - const static int REGION_HALF = REGION_SIZE / 2; + static const int TILE_SIZE = 128; + static const int REGION_SIZE = 5; + static const int REGION_HALF = REGION_SIZE / 2; std::string dir;