diff options
author | Simon Howard | 2013-10-28 03:37:26 +0000 |
---|---|---|
committer | Simon Howard | 2013-10-28 03:37:26 +0000 |
commit | 5a8db1512bf95325d466086498b20474b769924f (patch) | |
tree | 0243a2a9958d7539dc7bf3b5c745d43841ac5eb0 /src/setup | |
parent | c39fd3c54c90748ae264b148ab79b70a9599650f (diff) | |
download | chocolate-doom-5a8db1512bf95325d466086498b20474b769924f.tar.gz chocolate-doom-5a8db1512bf95325d466086498b20474b769924f.tar.bz2 chocolate-doom-5a8db1512bf95325d466086498b20474b769924f.zip |
Declare Windows binaries as DPI-aware to prevent the OS from applying
DPI virtualization.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2727
Diffstat (limited to 'src/setup')
-rw-r--r-- | src/setup/setup-manifest.xml.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/setup/setup-manifest.xml.in b/src/setup/setup-manifest.xml.in index ff879263..5e5cb87c 100644 --- a/src/setup/setup-manifest.xml.in +++ b/src/setup/setup-manifest.xml.in @@ -29,5 +29,14 @@ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!-- Vista --> </application> </compatibility> + + <!-- Declare app as DPI aware, so that Windows Vista and later will not + apply DPI virtualization. --> + + <asmv3:application> + <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> </assembly> |