diff options
Diffstat (limited to 'src/game/Map.h')
-rw-r--r-- | src/game/Map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Map.h b/src/game/Map.h index 5e4b408b505..2ded7cf0975 100644 --- a/src/game/Map.h +++ b/src/game/Map.h @@ -118,7 +118,7 @@ enum LevelRequirementVsMode #pragma pack(pop) #endif -typedef HM_NAMESPACE::hash_map<Creature*, CreatureMover> CreatureMoveList; +typedef UNORDERED_MAP<Creature*, CreatureMover> CreatureMoveList; #define MAX_HEIGHT 100000.0f // can be use for find ground height at surface #define INVALID_HEIGHT -100000.0f // for check, must be equal to VMAP_INVALID_HEIGHT, real value for unknown height is VMAP_INVALID_HEIGHT_VALUE |