Tile.cpp: Fix MSVC build broken by 072bbba

This commit is contained in:
SmallJoker 2017-03-24 20:05:15 +01:00
parent 329d654e37
commit 5a59ad2307

View File

@ -2266,7 +2266,7 @@ video::ITexture* TextureSource::getNormalTexture(const std::string &name)
return getTexture("override_normal.png"); return getTexture("override_normal.png");
std::string fname_base = name; std::string fname_base = name;
static const char *normal_ext = "_normal.png"; 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("."); size_t pos = fname_base.find(".");
std::string fname_normal = fname_base.substr(0, pos) + normal_ext; std::string fname_normal = fname_base.substr(0, pos) + normal_ext;
if (isKnownSourceImage(fname_normal)) { if (isKnownSourceImage(fname_normal)) {
@ -2277,7 +2277,7 @@ video::ITexture* TextureSource::getNormalTexture(const std::string &name)
i += normal_ext_size; i += normal_ext_size;
} }
return getTexture(fname_base); return getTexture(fname_base);
} }
return NULL; return NULL;
} }