forked from Mirrorlandia_minetest/minetest
MSVC: Fix locale workaround code
This commit is contained in:
parent
7bae8ab838
commit
0d41996562
@ -119,7 +119,7 @@ static const char* MSVC_LocaleLookup(const char* raw_shortname)
|
||||
return "";
|
||||
}
|
||||
|
||||
static void MSVC_LocaleWorkaround()
|
||||
static void MSVC_LocaleWorkaround(int argc, char* argv[])
|
||||
{
|
||||
errorstream << "MSVC localization workaround active. "
|
||||
"Restarting " PROJECT_NAME_C " in a new environment!" << std::endl;
|
||||
@ -165,7 +165,6 @@ static void MSVC_LocaleWorkaround()
|
||||
errorstream << "*******************************************************" << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@ -195,7 +194,7 @@ void init_gettext(const char *path, const std::string &configured_language,
|
||||
#ifndef SERVER
|
||||
// Hack to force gettext to see the right environment
|
||||
if (current_language != configured_language)
|
||||
MSVC_LocaleWorkaround();
|
||||
MSVC_LocaleWorkaround(argc, argv);
|
||||
#else
|
||||
errorstream << "*******************************************************" << std::endl;
|
||||
errorstream << "Can't apply locale workaround for server!" << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user