Removed redundant __APPLE__ case in get_scale()

This commit is contained in:
rxi 2020-05-29 09:33:42 +01:00
parent 1b2fda2825
commit b96609b7b8
1 changed files with 0 additions and 2 deletions

View File

@ -20,8 +20,6 @@ static double get_scale(void) {
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
#if _WIN32
return dpi / 96.0;
#elif __APPLE__
return 1.0; /* dpi / 72.0; */
#else
return 1.0;
#endif