Skip to content

Commit

Permalink
Use editbin instead to change subsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
IntelOrca committed Jan 10, 2017
1 parent 21bb7b9 commit bbac8b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ environment:
OPENRCT2_ORG_TOKEN: OPENRCT2_ORG_TOKEN:
secure: leQX3xCQpmBLGuMqrxjFlzexDt96ypNRMM5TTRVHbGE8PwVg9crgeykLc2BIZU6HDHveJCHqh2cGMdHtHYJYcw== secure: leQX3xCQpmBLGuMqrxjFlzexDt96ypNRMM5TTRVHbGE8PwVg9crgeykLc2BIZU6HDHveJCHqh2cGMdHtHYJYcw==
BUILD_SERVER: AppVeyor BUILD_SERVER: AppVeyor
PATH: $(PATH);C:\Program Files (x86)\Windows Kits\10\bin\x86 PATH: $(PATH);C:\Program Files (x86)\Windows Kits\10\bin\x86;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin
install: install:
- ps: >- - ps: >-
.\scripts\ps\appveyor_install.ps1 .\scripts\ps\appveyor_install.ps1
Expand Down
4 changes: 1 addition & 3 deletions openrct2.proj
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -208,9 +208,7 @@
<!-- Target to create openrct2.exe (windows) and openrct2.com (console) --> <!-- Target to create openrct2.exe (windows) and openrct2.com (console) -->
<Target Name="CreateGUI" DependsOnTargets="Build" AfterTargets="Build" Inputs="$(OutputExe)" Outputs="$(OutputCom)"> <Target Name="CreateGUI" DependsOnTargets="Build" AfterTargets="Build" Inputs="$(OutputExe)" Outputs="$(OutputCom)">
<Copy SourceFiles="$(OutputExe)" DestinationFiles="$(OutputCom)" /> <Copy SourceFiles="$(OutputExe)" DestinationFiles="$(OutputCom)" />
<Exec Command="printf '\x02' | dd of=$(OutputExe) seek=372 bs=1 conv=notrunc count=1" <Exec Command="editbin /subsystem:windows $(OutputExe)" />
StandardOutputImportance="low"
StandardErrorImportance="low" />
</Target> </Target>


<!-- Target to download the title sequences --> <!-- Target to download the title sequences -->
Expand Down

0 comments on commit bbac8b8

Please sign in to comment.