mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
Fix build issue after recent graphics changes #1715
This commit is contained in:
parent
45ffa8e2c9
commit
1921e46c12
@ -129,8 +129,8 @@ void graphicsStructInit(JsGraphics *gfx, int width, int height, int bpp) {
|
||||
gfx->data.modMinY = 32767;
|
||||
gfx->data.clipRect.x1 = 0;
|
||||
gfx->data.clipRect.y1 = 0;
|
||||
gfx->data.clipRect.x2 = LCD_WIDTH-1;
|
||||
gfx->data.clipRect.y2 = LCD_HEIGHT-1;
|
||||
gfx->data.clipRect.x2 = width-1;
|
||||
gfx->data.clipRect.y2 = height-1;
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user