From 5a59ad230744a84a1474e8c3b97cf3d9080536d7 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Fri, 24 Mar 2017 20:05:15 +0100 Subject: Tile.cpp: Fix MSVC build broken by 072bbba --- src/client/tile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') diff --git a/src/client/tile.cpp b/src/client/tile.cpp index 85d388d6e..86ca7d422 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -2266,7 +2266,7 @@ video::ITexture* TextureSource::getNormalTexture(const std::string &name) return getTexture("override_normal.png"); std::string fname_base = name; static const char *normal_ext = "_normal.png"; - static const uint32_t normal_ext_size = strlen(normal_ext); + static const u32 normal_ext_size = strlen(normal_ext); size_t pos = fname_base.find("."); std::string fname_normal = fname_base.substr(0, pos) + normal_ext; if (isKnownSourceImage(fname_normal)) { @@ -2277,7 +2277,7 @@ video::ITexture* TextureSource::getNormalTexture(const std::string &name) i += normal_ext_size; } return getTexture(fname_base); - } + } return NULL; } -- cgit v1.2.3