mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-25 18:46:52 +01:00
Fix premature CTimer calls
This commit is contained in:
parent
3092b9a46e
commit
6cb8c11285
@ -3528,9 +3528,15 @@ CMenuManager::InitialiseChangedLanguageSettings()
|
|||||||
{
|
{
|
||||||
if (m_bFrontEnd_ReloadObrTxtGxt) {
|
if (m_bFrontEnd_ReloadObrTxtGxt) {
|
||||||
m_bFrontEnd_ReloadObrTxtGxt = false;
|
m_bFrontEnd_ReloadObrTxtGxt = false;
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
if (gGameState > GS_INIT_ONCE)
|
||||||
|
#endif
|
||||||
CTimer::Stop();
|
CTimer::Stop();
|
||||||
TheText.Unload();
|
TheText.Unload();
|
||||||
TheText.Load();
|
TheText.Load();
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
if (gGameState > GS_INIT_ONCE)
|
||||||
|
#endif
|
||||||
CTimer::Update();
|
CTimer::Update();
|
||||||
CGame::frenchGame = false;
|
CGame::frenchGame = false;
|
||||||
CGame::germanGame = false;
|
CGame::germanGame = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user