aboutsummaryrefslogtreecommitdiffstats
path: root/src/win.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/win.c')
-rw-r--r--src/win.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/win.c b/src/win.c
index e9c621e..33b37b6 100644
--- a/src/win.c
+++ b/src/win.c
@@ -167,7 +167,8 @@ puglWinGetMonitor(const PuglView* const view)
static double
puglWinGetViewScaleFactor(const PuglView* const view)
{
- const HMODULE shcore = LoadLibrary("Shcore.dll");
+ const HMODULE shcore =
+ LoadLibraryEx("Shcore.dll", NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
if (!shcore) {
return 1.0;
}
@@ -201,7 +202,8 @@ puglInitWorldInternals(PuglWorldType type, PuglWorldFlags PUGL_UNUSED(flags))
}
if (type == PUGL_PROGRAM) {
- HMODULE user32 = LoadLibrary("user32.dll");
+ HMODULE user32 =
+ LoadLibraryEx("user32.dll", NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
if (user32) {
PFN_SetProcessDPIAware SetProcessDPIAware =
(PFN_SetProcessDPIAware)GetProcAddress(user32, "SetProcessDPIAware");