From 67a116aa058206f0a250bd86f32fd49e06be6fca Mon Sep 17 00:00:00 2001 From: "Dmitry D. Chernov" Date: Wed, 22 Mar 2023 16:48:50 +1000 Subject: [PATCH] Game: Swap the "Custom Game" and "Campaign Select" menu items in "New Game" --- src/game/g_menu.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_menu.pas b/src/game/g_menu.pas index ed6d3ef..f2e3d86 100644 --- a/src/game/g_menu.pas +++ b/src/game/g_menu.pas @@ -2217,8 +2217,8 @@ begin Name := 'mmNewGameMenu'; AddButton(@ProcSingle1Player, _lc[I_MENU_1_PLAYER]); AddButton(@ProcSingle2Players, _lc[I_MENU_2_PLAYERS]); - AddButton(nil, _lc[I_MENU_CUSTOM_GAME], 'CustomGameMenu'); AddButton(@ProcSelectCampaignMenu, _lc[I_MENU_CAMPAIGN], 'CampaignMenu'); + AddButton(nil, _lc[I_MENU_CUSTOM_GAME], 'CustomGameMenu'); end; Menu.DefControl := 'mmNewGameMenu'; g_GUI_AddWindow(Menu); -- 2.29.2