From ad27e3b973415d2ecb73fca258740deb98ec7389 Mon Sep 17 00:00:00 2001 From: ACrazyTown <47027981+ACrazyTown@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:37:02 +0100 Subject: [PATCH] Hardcode mOutPre in Manifester --- tools/hxcpp/Manifester.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/hxcpp/Manifester.hx b/tools/hxcpp/Manifester.hx index 177806ae1..20cffb36c 100644 --- a/tools/hxcpp/Manifester.hx +++ b/tools/hxcpp/Manifester.hx @@ -19,6 +19,7 @@ class Manifester args = args.concat(mFlags); //only windows for now + mOutPre = "-outputresource:"; mOutPost = isExe ? ";1" : ";2"; var result = ProcessManager.runCommand("", mExe, args.concat([manifestName,mOutPre + binName + mOutPost]) );