mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-02-15 11:30:37 +00:00
Tweak heuristic calculation of when to use 2x glyphs
This commit is contained in:
parent
d8fc04ec2e
commit
c89ee87bd4
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user