GUI: Android scaling weirdness

This commit is contained in:
tildearrow 2022-11-10 15:11:17 -05:00
parent 69bb628a8b
commit 4a0b7e941f
1 changed files with 2 additions and 0 deletions

View File

@ -201,6 +201,8 @@ double getScaleFactor(const char* driverHint) {
if (SDL_GetDisplayDPI(0,&dpiScaleF,NULL,NULL)==0) {
ret=round(dpiScaleF/192.0f);
if (ret<1) ret=1;
logI("dpiScaleF: %f",dpiScaleF);
logI("ret: %f",ret);
}
#else