diff options
author | Franklin Wei <franklin@rockbox.org> | 2020-07-06 13:38:57 -0400 |
---|---|---|
committer | Franklin Wei <franklin@rockbox.org> | 2020-07-06 17:39:47 +0000 |
commit | 5b8198d1472a70568712671ccc9fe06805eadc36 (patch) | |
tree | 7dc97987742d709458b69f152cce88786f110b47 /apps/plugins | |
parent | 2d57bfba36575ab3bb136324d0e0ea8c32cbd88f (diff) |
2048: use larger bitmaps on 96x96 screens (e.g. Clip Zip)
Apparently the smallest bitmaps are hard to see.
Change-Id: I0265ce4da15677f9c4c64457b1a1f849a0f3a7f8
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 99297306e7..16df8a03d7 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -15,7 +15,7 @@ _2048_background.121x121x24.bmp #elif MIN(LCD_WIDTH, LCD_HEIGHT)>=110 _2048_tiles.22x22x24.bmp _2048_background.103x103x24.bmp -#elif LCD_HEIGHT>=96 && LCD_WIDTH>=128 +#elif MIN(LCD_WIDTH, LCD_HEIGHT)>=96 _2048_tiles.19x19x24.bmp _2048_background.88x88x24.bmp #else |