From f9dd7d52f4061bcea2b6f99bb6530119f0432012 Mon Sep 17 00:00:00 2001 From: Tectu Date: Mon, 20 Aug 2012 20:43:39 +0200 Subject: [PATCH] coord_t from uint16_t to int16_t --- include/gdisp_lld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gdisp_lld.h b/include/gdisp_lld.h index 99865a9f..91485455 100644 --- a/include/gdisp_lld.h +++ b/include/gdisp_lld.h @@ -501,7 +501,7 @@ /** * @brief The type for a coordinate or length on the screen. */ -typedef uint16_t coord_t; +typedef int16_t coord_t; /** * @brief The type of a pixel. */