diff options
Diffstat (limited to 'drivers/gdisp/ST7565/gdisp_lld_ST7565.c')
-rw-r--r-- | drivers/gdisp/ST7565/gdisp_lld_ST7565.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gdisp/ST7565/gdisp_lld_ST7565.c b/drivers/gdisp/ST7565/gdisp_lld_ST7565.c index 2639e268..d347c22b 100644 --- a/drivers/gdisp/ST7565/gdisp_lld_ST7565.c +++ b/drivers/gdisp/ST7565/gdisp_lld_ST7565.c @@ -166,7 +166,7 @@ LLDSPEC gBool gdisp_lld_init(GDisplay *g) { #if GDISP_HARDWARE_DRAWPIXEL LLDSPEC void gdisp_lld_draw_pixel(GDisplay *g) { - coord_t x, y; + gCoord x, y; switch(g->g.Orientation) { default: @@ -197,7 +197,7 @@ LLDSPEC gBool gdisp_lld_init(GDisplay *g) { #if GDISP_HARDWARE_PIXELREAD LLDSPEC color_t gdisp_lld_get_pixel_color(GDisplay *g) { - coord_t x, y; + gCoord x, y; switch(g->g.Orientation) { default: |