tDon't always use 32-bit common controls - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 892748e7e1dca041020c6ae5e2f6d77e97bf2bca
(DIR) parent 641b4fb6e0b1c489981182d2a5f94305503805f3
(HTM) Author: Ben Webb <ben@salilab.org>
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(-)
---
(DIR) diff --git a/src/dopewars.manifest b/src/dopewars.manifest
t@@ -2,7 +2,7 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
name="dopewars"
- processorArchitecture="x86"
+ processorArchitecture="*"
version="1.0.0.0"
type="win32"/>
<description>dopewars drug dealing game</description>
t@@ -12,7 +12,7 @@
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
- processorArchitecture="x86"
+ processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>