Change gamelist localisation to use system codepage by default, otherwise looks like everything works correctly

This commit is contained in:
Barry Harris 2012-01-26 10:40:40 +00:00
parent b1cdb48a67
commit 64fd6f3ef7
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@
TCHAR szGamelistLocalisationTemplate[MAX_PATH] = _T("");
bool nGamelistLocalisationActive = false;
static int nCodePage = 1252;
static int nCodePage = CP_ACP;
static TCHAR *szLongNamesArray[MAX_LST_GAMES];
void BurnerDoGameListLocalisation()
@ -128,6 +128,8 @@ void BurnerExitGameListLocalisation()
szLongNamesArray[i] = NULL;
}
}
nCodePage = CP_ACP;
}
// ----------------------------------------------------------------------------