How to fix console on high DPI and high resolution displays

Started by Hanfelt, March 31, 2017, 07:50:09 AM

Previous topic - Next topic

Hanfelt

Put the content from this snippet in a file called: nxmc.exe.manifest in the samde directory as your nxmc.exe.

<?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">False</dpiAware>
    </windowsSettings>
  </application>
</assembly>


Then add a registry to your computer called:

HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > SideBySide

DWORD (32 bit) Value: PreferExternalManifest

Value: 1


Source: http://winaero.com/blog/how-to-fix-apps-that-look-small-on-high-dpi-and-high-resolution-displays/