From: Dmitry D. Chernov Date: Wed, 22 Mar 2023 06:48:50 +0000 (+1000) Subject: Game: Swap the "Custom Game" and "Campaign Select" menu items in "New Game" X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=67a116aa058206f0a250bd86f32fd49e06be6fca Game: Swap the "Custom Game" and "Campaign Select" menu items in "New Game" --- 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);