tDon't always use 32-bit common controls - vaccinewars - be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars
Log
Files
Refs
README
LICENSE
---
commit 892748e7e1dca041020c6ae5e2f6d77e97bf2bca
parent 641b4fb6e0b1c489981182d2a5f94305503805f3
Author: Ben Webb 
Date:   Wed, 11 Nov 2020 22:11:45 -0800

Don't always use 32-bit common controls

We used to explicitly request 32-bit common controls.
This prevents a 64-bit dopewars binary from loading.
Fix this by requesting "*" as the architecture.

Diffstat:
  M src/dopewars.manifest               |       4 ++--

1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/dopewars.manifest b/src/dopewars.manifest
t@@ -2,7 +2,7 @@
 
 
 dopewars drug dealing game
t@@ -12,7 +12,7 @@
             type="win32"
             name="Microsoft.Windows.Common-Controls"
             version="6.0.0.0"
-            processorArchitecture="x86"
+            processorArchitecture="*"
             publicKeyToken="6595b64144ccf1df"
             language="*"
         />