Skip to content

Commit 672f7a8

Browse files
committed
chore: fix wrong function called on restart
1 parent b43ddfc commit 672f7a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus

GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/QuitMenu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ static void restartMissionMenu()
247247
InitRandom(TheGlobalData->m_fixedSeed);
248248
//InitRandom(0);
249249
} else {
250-
InitGameLogicRandom(GameClientRandomValue(0, INT_MAX - 1));
250+
InitRandom(GameClientRandomValue(0, INT_MAX - 1));
251251
}
252252
}
253253
//TheTransitionHandler->remove("QuitFull"); //KRISMORNESS ADD

0 commit comments

Comments
 (0)