Skip to content

Commit

Permalink
Object/Custom mode switch fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdks committed Dec 31, 2020
1 parent 55ad16f commit a42fee4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions code/KF2ServerTool.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,10 @@
<Platform value="Win64">False</Platform>
</Platforms>
<Deployment Version="3">
<DeployFile LocalName="$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png" Configuration="Release" Class="UWP_DelphiLogo150">
<DeployFile LocalName="$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png" Configuration="Release" Class="UWP_DelphiLogo44">
<Platform Name="Win32">
<RemoteDir>Assets\</RemoteDir>
<RemoteName>Logo150x150.png</RemoteName>
<RemoteName>Logo44x44.png</RemoteName>
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
Expand All @@ -213,10 +213,10 @@
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
<DeployFile LocalName="$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png" Configuration="Release" Class="UWP_DelphiLogo44">
<DeployFile LocalName="$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png" Configuration="Release" Class="UWP_DelphiLogo150">
<Platform Name="Win32">
<RemoteDir>Assets\</RemoteDir>
<RemoteName>Logo44x44.png</RemoteName>
<RemoteName>Logo150x150.png</RemoteName>
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
Expand Down
Binary file modified code/KF2ServerTool.exe
Binary file not shown.
Binary file modified code/KF2ServerToolCMD.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion code/interface/Main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,7 @@ procedure TFormMain.edtAddParamChange(Sender: TObject);
begin
kfprofiles[defaultProfile].AdditionalParam := edtAddParam.text;
if Pos('GAME=', UpperCase(edtAddParam.text)) > 0 then
cbbGameMode.ItemIndex := 4;
cbbGameMode.ItemIndex := 5;

end;

Expand Down

0 comments on commit a42fee4

Please sign in to comment.