Common: Remove locale based functions from CommonFuncs.

Since %f isn't used anymore in the shader generators, these can go.
This commit is contained in:
Lioncash
2014-12-05 20:54:41 -05:00
parent f7a16eca84
commit 9bcadc8029
6 changed files with 1 additions and 107 deletions

View File

@ -72,7 +72,7 @@ bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list ar
// will be present in the middle of a multibyte sequence.
//
// This is why we lookup an ANSI (cp1252) locale here and use _vsnprintf_l.
static locale_t c_locale = nullptr;
static _locale_t c_locale = nullptr;
if (!c_locale)
c_locale = _create_locale(LC_ALL, ".1252");
writtenCount = _vsnprintf_l(out, outsize, format, c_locale, args);