Removed redundant __APPLE__ case in get_scale()
This commit is contained in:
parent
1b2fda2825
commit
b96609b7b8
|
@ -20,8 +20,6 @@ static double get_scale(void) {
|
||||||
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
|
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
return dpi / 96.0;
|
return dpi / 96.0;
|
||||||
#elif __APPLE__
|
|
||||||
return 1.0; /* dpi / 72.0; */
|
|
||||||
#else
|
#else
|
||||||
return 1.0;
|
return 1.0;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue