Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
8a6d6bae3cb67262e1719ab6d3e9e9d062901327...d152e792ef9296994ade0cf870cf7e43d321bfda
Commits (1)
Use xp_dlsym() correctly.
· d152e792
Deucе
authored
May 17, 2021
d152e792
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/conio/sdlfuncs.c
src/conio/sdlfuncs.c
+2
-2
No files found.
src/conio/sdlfuncs.c
View file @
d152e792
...
...
@@ -251,7 +251,7 @@ int init_sdl_video(void)
if
(
userDLL
)
{
SetProcessDPIAware
=
xp_dlsym
(
userDLL
,
"
SetProcessDPIAware
"
);
SetProcessDPIAware
=
xp_dlsym
(
userDLL
,
SetProcessDPIAware
);
}
...
...
@@ -260,7 +260,7 @@ int init_sdl_video(void)
if
(
shcoreDLL
)
{
SetProcessDpiAwareness
=
xp_dlsym
(
shcoreDLL
,
"
SetProcessDpiAwareness
"
);
SetProcessDpiAwareness
=
xp_dlsym
(
shcoreDLL
,
SetProcessDpiAwareness
);
}
if
(
SetProcessDpiAwareness
)
{
...
...