1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 21:45:32 +00:00

minor corrections

This commit is contained in:
gus 2014-08-12 13:31:20 +02:00
parent baf6cca051
commit 5fd599b5de
2 changed files with 1 additions and 3 deletions

View file

@ -298,8 +298,6 @@ std::auto_ptr<sh::Factory> CS::Editor::setupGraphics()
sh::Factory::getInstance ().setGlobalSetting ("num_lights", "8");
Ogre::FontManager* fontManager = new Ogre::FontManager();
/// \todo add more configurable shiny settings
return factory;

View file

@ -45,7 +45,7 @@ static char strict_normalize_char(char ch)
static char nonstrict_normalize_char(char ch)
{
return ch == '\\' ? '/' : std::tolower(ch,std::locale());
return ch == '\\' ? '/' : std::tolower(ch,std::locale::classic());
}
template<typename T1, typename T2>