diff options
| author | Silent <zdanio95@gmail.com> | 2019-10-06 22:23:06 +0200 |
|---|---|---|
| committer | Silent <zdanio95@gmail.com> | 2019-10-07 22:46:37 +0200 |
| commit | ea8a3059bff1693ea640777a3aeb0c31daf18951 (patch) | |
| tree | adaf1c3fbe2a1d12560901979a1447465b74f483 /Source/Core | |
| parent | 45890c20cfcc066f9ea264499edf8adfb22e5518 (diff) | |
Enable Win10 long path awareness in manifest files
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/DolphinQt.manifest | 5 | ||||
| -rw-r--r-- | Source/Core/WinUpdater/Updater.exe.manifest | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/Source/Core/DolphinQt/DolphinQt.manifest b/Source/Core/DolphinQt/DolphinQt.manifest index 8c709b5c38..01910f52dc 100644 --- a/Source/Core/DolphinQt/DolphinQt.manifest +++ b/Source/Core/DolphinQt/DolphinQt.manifest @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <application xmlns="urn:schemas-microsoft-com:asm.v3"> - <windowsSettings> - <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> + <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings"> + <dpiAware>true</dpiAware> + <longPathAware>true</longPathAware> </windowsSettings> </application> <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> diff --git a/Source/Core/WinUpdater/Updater.exe.manifest b/Source/Core/WinUpdater/Updater.exe.manifest index 0a3ca72f6d..e661623b28 100644 --- a/Source/Core/WinUpdater/Updater.exe.manifest +++ b/Source/Core/WinUpdater/Updater.exe.manifest @@ -29,8 +29,9 @@ </compatibility> <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> <asmv3:windowsSettings - xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> - <dpiAware>True</dpiAware> + xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings"> + <dpiAware>true</dpiAware> + <longPathAware>true</longPathAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
\ No newline at end of file |
