diff --git a/CHANGELOG.md b/CHANGELOG.md index ad07fab5fa..0d686b6689 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ 0.46.0 ------ + Bug #3623: Fix HiDPI on Windows Bug #4540: Rain delay when exiting water Bug #4701: PrisonMarker record is not hardcoded like other markers Feature #2229: Improve pathfinding AI diff --git a/apps/openmw/CMakeLists.txt b/apps/openmw/CMakeLists.txt index 04584a3421..0bb6e900de 100644 --- a/apps/openmw/CMakeLists.txt +++ b/apps/openmw/CMakeLists.txt @@ -4,6 +4,7 @@ set(GAME engine.cpp ${CMAKE_SOURCE_DIR}/files/windows/openmw.rc + ${CMAKE_SOURCE_DIR}/files/windows/openmw.exe.manifest ) if (ANDROID) diff --git a/files/windows/openmw.exe.manifest b/files/windows/openmw.exe.manifest new file mode 100644 index 0000000000..c0b358a4ad --- /dev/null +++ b/files/windows/openmw.exe.manifest @@ -0,0 +1,18 @@ + + + + Q2PRO + + + + + + + + + + True + + + + diff --git a/files/windows/openmw.rc b/files/windows/openmw.rc index b879a7dd59..f41172a3da 100644 --- a/files/windows/openmw.rc +++ b/files/windows/openmw.rc @@ -1 +1,2 @@ IDI_ICON1 ICON DISCARDABLE "openmw.ico" +CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "openmw.exe.manifest"