1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-04 06:54:39 +00:00

Fix regression that prevented few textures from loading (Labyrinth mod icon, for example)

This commit is contained in:
fgenesis 2012-07-12 03:46:18 +00:00
parent 93892ff46a
commit 319b9d09ed
2 changed files with 6 additions and 2 deletions

View file

@ -110,7 +110,7 @@ std::string getSystemLocale()
size_t found = localeStr.find('.');
if (found != string::npos)
if (found != std::string::npos)
localeStr.resize(found);
}
#endif