1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 20:53:50 +00:00

Merge pull request #2018 from sthalik/pr/fix-hidpi-resolution

fix resolution on HiDPI (non-100% resolution scaling) displays under Windows
This commit is contained in:
AnyOldName3 2018-11-08 23:06:04 +00:00 committed by GitHub
commit 5f509f6da3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 0 deletions

View file

@ -1,6 +1,7 @@
0.46.0 0.46.0
------ ------
Bug #3623: Fix HiDPI on Windows
Bug #4540: Rain delay when exiting water Bug #4540: Rain delay when exiting water
Bug #4701: PrisonMarker record is not hardcoded like other markers Bug #4701: PrisonMarker record is not hardcoded like other markers
Feature #2229: Improve pathfinding AI Feature #2229: Improve pathfinding AI

View file

@ -4,6 +4,7 @@ set(GAME
engine.cpp engine.cpp
${CMAKE_SOURCE_DIR}/files/windows/openmw.rc ${CMAKE_SOURCE_DIR}/files/windows/openmw.rc
${CMAKE_SOURCE_DIR}/files/windows/openmw.exe.manifest
) )
if (ANDROID) if (ANDROID)

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="openmw" version="1.0.0.0"/>
<description>Q2PRO</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings xmlns:ws="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<ws:dpiAware>True</ws:dpiAware>
</windowsSettings>
</application>
</assembly>

View file

@ -1 +1,2 @@
IDI_ICON1 ICON DISCARDABLE "openmw.ico" IDI_ICON1 ICON DISCARDABLE "openmw.ico"
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "openmw.exe.manifest"