diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2016-10-05 20:58:05 +0200 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2016-10-05 20:58:05 +0200 |
commit | 7fab86a49dd569f24804eb7396843e61095e3854 (patch) | |
tree | 03ad663410245bfea4906cedfa86ac5709d7db57 /src/content_cao.cpp | |
parent | 613797a3048907275ceebe29582b9fc2761b1f25 (diff) | |
download | minetest-7fab86a49dd569f24804eb7396843e61095e3854.tar.gz minetest-7fab86a49dd569f24804eb7396843e61095e3854.tar.bz2 minetest-7fab86a49dd569f24804eb7396843e61095e3854.zip |
Compilation fix
Diffstat (limited to 'src/content_cao.cpp')
-rw-r--r-- | src/content_cao.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_cao.cpp b/src/content_cao.cpp index 609422f26..a141690f6 100644 --- a/src/content_cao.cpp +++ b/src/content_cao.cpp @@ -566,7 +566,7 @@ GenericCAO::GenericCAO(IGameDef *gamedef, ClientEnvironment *env): m_animation_speed(15), m_animation_blend(0), m_animation_loop(true), - m_bone_position(std::map<std::string, core::vector2d<v3f> >()), + m_bone_position(UNORDERED_MAP<std::string, core::vector2d<v3f> >()), m_attachment_bone(""), m_attachment_position(v3f(0,0,0)), m_attachment_rotation(v3f(0,0,0)), |