Tweak heuristic calculation of when to use 2x glyphs

This commit is contained in:
Aaron Culliney 2016-01-03 12:58:12 -08:00
parent d8fc04ec2e
commit c89ee87bd4

View File

@ -612,7 +612,7 @@ public enum Apple2Preferences {
double screenInches = Math.sqrt(x + y);
Log.d(TAG, "Screen inches:" + screenInches + " w:" + dm.widthPixels + " h:" + dm.heightPixels);
*/
if (dm.widthPixels < 1280 || dm.heightPixels < 1280) {
if (dm.widthPixels <= 480 || dm.heightPixels <= 480) {
scale = 1;
}