From 3f54b80cfa87dfb199de6f9ab0d3a58896dca37d Mon Sep 17 00:00:00 2001 From: Oliver Schinagl Date: Thu, 20 Jan 2005 07:53:58 +0000 Subject: mouse coordinate stores are now 11 bits wide. Display coordinates as well thus skin data also. --- Graphic_Equalizer/include/display_shared.hch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Graphic_Equalizer/include/display_shared.hch b/Graphic_Equalizer/include/display_shared.hch index 32646fe..b9bf0d8 100644 --- a/Graphic_Equalizer/include/display_shared.hch +++ b/Graphic_Equalizer/include/display_shared.hch @@ -27,10 +27,10 @@ * maximal two colors per area. */ typedef struct { - unsigned 10 bottom; /*!< lowest point registerd in the area */ - unsigned 10 top; /*!< highest point registerd in the area */ - unsigned 10 left; /*!< leftmost point registerd in the area */ - unsigned 10 right; /*!< rightmost point registerd in the area */ + unsigned 11 left; /*!< leftmost point registerd in the area */ + unsigned 11 right; /*!< rightmost point registerd in the area */ + unsigned 11 bottom; /*!< lowest point registerd in the area */ + unsigned 11 top; /*!< highest point registerd in the area */ unsigned 24 color_primary; /*!< primary color for this area */ unsigned 24 color_secondary; /*!< optionally an area can have a second color */ } skininfo_t; -- cgit v0.12