From 7f262ef447f744bf880a26a952b65ae4aa542570 Mon Sep 17 00:00:00 2001 From: binarymaster Date: Sun, 10 Jan 2016 16:29:43 +0300 Subject: [PATCH] Game/Menu: Fix start campaign --- DF Sources/g_menu.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DF Sources/g_menu.pas b/DF Sources/g_menu.pas index d57640d..d0c2832 100644 --- a/DF Sources/g_menu.pas +++ b/DF Sources/g_menu.pas @@ -537,7 +537,7 @@ procedure ProcStartCampaign(); begin with TGUIMenu(g_ActiveWindow.GetControl('mCampaignMenu')) do begin - WAD := TGUIFileListBox(GetControl('lsWAD')).SelectedItem(); + WAD := ExtractRelativePath(MapsDir, TGUIFileListBox(GetControl('lsWAD')).SelectedItem()); TwoPlayers := TGUISwitch(GetControl('swPlayers')).ItemIndex = 1; end;