2048: use larger bitmaps on 96x96 screens (e.g. Clip Zip)

Apparently the smallest bitmaps are hard to see.

Change-Id: I0265ce4da15677f9c4c64457b1a1f849a0f3a7f8
This commit is contained in:
Franklin Wei 2020-07-06 13:38:57 -04:00
parent 2d57bfba36
commit 5b8198d147

View file

@ -15,7 +15,7 @@ _2048_background.121x121x24.bmp
#elif MIN(LCD_WIDTH, LCD_HEIGHT)>=110 #elif MIN(LCD_WIDTH, LCD_HEIGHT)>=110
_2048_tiles.22x22x24.bmp _2048_tiles.22x22x24.bmp
_2048_background.103x103x24.bmp _2048_background.103x103x24.bmp
#elif LCD_HEIGHT>=96 && LCD_WIDTH>=128 #elif MIN(LCD_WIDTH, LCD_HEIGHT)>=96
_2048_tiles.19x19x24.bmp _2048_tiles.19x19x24.bmp
_2048_background.88x88x24.bmp _2048_background.88x88x24.bmp
#else #else