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:
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");
|
||||
|
||||
Ogre::FontManager* fontManager = new Ogre::FontManager();
|
||||
|
||||
/// \todo add more configurable shiny settings
|
||||
|
||||
return factory;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue