| 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(-)
--- |
| 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="*"
/> |