Changed get_scale() to always default to 1.0 on macOS

This commit is contained in:
rxi 2020-05-10 19:31:09 +01:00
parent f7b54db1b4
commit b67b680975
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ static double get_scale(void) {
#if _WIN32
return dpi / 96.0;
#elif __APPLE__
return dpi / 72.0;
return 1.0; /* dpi / 72.0; */
#else
return 1.0;
#endif