forked from teamnwah/openmw-tes3coop
minor corrections
This commit is contained in:
parent
baf6cca051
commit
5fd599b5de
2 changed files with 1 additions and 3 deletions
|
@ -298,8 +298,6 @@ std::auto_ptr<sh::Factory> CS::Editor::setupGraphics()
|
||||||
|
|
||||||
sh::Factory::getInstance ().setGlobalSetting ("num_lights", "8");
|
sh::Factory::getInstance ().setGlobalSetting ("num_lights", "8");
|
||||||
|
|
||||||
Ogre::FontManager* fontManager = new Ogre::FontManager();
|
|
||||||
|
|
||||||
/// \todo add more configurable shiny settings
|
/// \todo add more configurable shiny settings
|
||||||
|
|
||||||
return factory;
|
return factory;
|
||||||
|
|
|
@ -45,7 +45,7 @@ static char strict_normalize_char(char ch)
|
||||||
|
|
||||||
static char nonstrict_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>
|
template<typename T1, typename T2>
|
||||||
|
|
Loading…
Reference in a new issue