Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

Commit

Permalink
Game/Menu: Fix start campaign
Browse files Browse the repository at this point in the history
  • Loading branch information
binarymaster committed Jan 10, 2016
1 parent 2990bfc commit 7f262ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DF Sources/g_menu.pas
Expand Up @@ -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;

Expand Down

0 comments on commit 7f262ef

Please sign in to comment.