Skip to content

Commit db21517

Browse files
committed
- Default to FP12 (maximum version recognized by Haxe 3.1.3) in CrossOver templates
- Remove 64-bit stuff on CrossOver
1 parent 6dac12f commit db21517

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

FlashDevelop/Installer/CrossOver/Projects/315 Haxe - AIR Projector/Project.hxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<movie fps="30" />
99
<movie width="800" />
1010
<movie height="600" />
11-
<movie version="17" />
11+
<movie version="12" />
1212
<movie minorVersion="0" />
1313
<movie platform="AIR" />
1414
<movie background="#FFFFFF" />

FlashDevelop/Installer/Installer.nsi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,14 +254,16 @@ Section "${DIST_NAME}" Main
254254
; Remove PluginCore from plugins...
255255
Delete "$INSTDIR\Plugins\PluginCore.dll"
256256

257-
; Patch CrossOver/Wine files
257+
; Patch CrossOver/Wine files, remove 64bit
258258
SetOverwrite on
259259
SetOutPath "$INSTDIR"
260260
Call GetIsWine
261261
Pop $0
262262
${If} $0 != "not_found"
263-
SetOutPath "$INSTDIR"
264263
File /r /x .svn /x .empty /x *.db "CrossOver\*.*"
264+
Delete "$INSTDIR\*64.exe"
265+
Delete "$INSTDIR\*64.exe.config"
266+
Delete "$INSTDIR\*64.dll"
265267
${EndIf}
266268

267269
; Write update flag file...

0 commit comments

Comments
 (0)