tangled
alpha
login
or
join now
emmeline.girlkisser.top
/
lite
Customized fork of github.com/rxi/lite
0
fork
atom
overview
issues
pulls
pipelines
Removed redundant __APPLE__ case in get_scale()
rxi
5 years ago
b96609b7
1b2fda28
options
unified
split
Changed files
-2
src
main.c
-2
src/main.c
···
20
20
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
21
21
#if _WIN32
22
22
return dpi / 96.0;
23
23
-
#elif __APPLE__
24
24
-
return 1.0; /* dpi / 72.0; */
25
23
#else
26
24
return 1.0;
27
25
#endif