From 837d7bfff8c785b896f3382a289c0c7b39fb0b47 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sun, 9 Jan 2022 21:20:56 +1100 Subject: [PATCH] Disable high DPI support --- src/Window_Win.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Window_Win.c b/src/Window_Win.c index 84cb6992f..b4c53b4a8 100644 --- a/src/Window_Win.c +++ b/src/Window_Win.c @@ -268,7 +268,8 @@ void Window_Init(void) { if (lib) { DynamicLib_GetAll(lib, funcs, Array_Elems(funcs)); /* Enable high DPI support */ - if (_SetProcessDPIAware) _SetProcessDPIAware(); + /* TODO re-enable when this can be set via option */ + /* if (_SetProcessDPIAware) _SetProcessDPIAware(); */ } hdc = GetDC(NULL);