Android: display_mode scale: cast to do a float division
parent
fc5f363ff7
commit
b23d20cd4d
|
@ -122,8 +122,8 @@ public class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
|
||||||
mDisplay.getRealMetrics( realMetrics );
|
mDisplay.getRealMetrics( realMetrics );
|
||||||
nDeviceWidth = realMetrics.widthPixels;
|
nDeviceWidth = realMetrics.widthPixels;
|
||||||
nDeviceHeight = realMetrics.heightPixels;
|
nDeviceHeight = realMetrics.heightPixels;
|
||||||
// Use densityDpi instead of density to more closely match what the UI scale is
|
// Use densityDpi instead of density to more closely match what the UI scale is
|
||||||
density = realMetrics.densityDpi / 160;
|
density = (float)realMetrics.densityDpi / 160.0f;
|
||||||
}
|
}
|
||||||
} catch(Exception ignored) {
|
} catch(Exception ignored) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue