aboutsummaryrefslogtreecommitdiffstats
path: root/halext/include
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2012-08-07 07:44:11 +1000
committerAndrew Hannam <andrewh@inmarket.com.au>2012-08-07 07:44:11 +1000
commit9f33efcf21c6dc63187d7d77ff94e438a2733777 (patch)
treefcd7d3f4186c81a7a0902eabf035c1b92bc01dd7 /halext/include
parente2629e350b9db524ce328b18535cfa005edec0f4 (diff)
downloaduGFX-9f33efcf21c6dc63187d7d77ff94e438a2733777.tar.gz
uGFX-9f33efcf21c6dc63187d7d77ff94e438a2733777.tar.bz2
uGFX-9f33efcf21c6dc63187d7d77ff94e438a2733777.zip
Compile error fix for GDISP_NEED_MULTITHREAD
Diffstat (limited to 'halext/include')
-rw-r--r--halext/include/gdisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/halext/include/gdisp.h b/halext/include/gdisp.h
index d284c125..454f5c4c 100644
--- a/halext/include/gdisp.h
+++ b/halext/include/gdisp.h
@@ -200,7 +200,7 @@ extern "C" {
void gdispDrawPixel(coord_t x, coord_t y, color_t color);
void gdispDrawLine(coord_t x0, coord_t y0, coord_t x1, coord_t y1, color_t color);
void gdispFillArea(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color);
- void gdispBlitArea(coord_t x, coord_t y, coord_t cx, coord_t cy, const pixel_t *buffer);
+ void gdispBlitArea(coord_t x, coord_t y, coord_t cx, coord_t cy, pixel_t *buffer);
/* Circle Functions */
#if GDISP_NEED_CIRCLE