mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 18:55:40 +00:00
Fix premature CTimer calls
This commit is contained in:
parent
c869602b6d
commit
225530ef04
1 changed files with 6 additions and 0 deletions
|
@ -2902,9 +2902,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 a new issue