1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Implement proper font handling

This commit is contained in:
sapier 2014-11-23 13:40:43 +01:00
parent 25945dc539
commit dceb9f7d60
91 changed files with 902 additions and 194 deletions

View file

@ -553,16 +553,7 @@ v2u32 getWindowSize() {
#ifndef __ANDROID__
float getDisplayDensity() {
float gui_scaling = g_settings->getFloat("gui_scaling");
// using Y here feels like a bug, this needs to be discussed later!
if (getWindowSize().Y <= 800) {
return (2.0/3.0) * gui_scaling;
}
if (getWindowSize().Y <= 1280) {
return 1.0 * gui_scaling;
}
return (4.0/3.0) * gui_scaling;
return g_settings->getFloat("screen_dpi")/96.0;
}
v2u32 getDisplaySize() {