summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:53:58 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:53:58 (GMT)
commit3f54b80cfa87dfb199de6f9ab0d3a58896dca37d (patch)
treea04ace1895f8ab8d262dd19f283f090388763629
parent517c1af5d41bc75498713db0b565ea7d8e6bf411 (diff)
downloadTASS-3f54b80cfa87dfb199de6f9ab0d3a58896dca37d.zip
TASS-3f54b80cfa87dfb199de6f9ab0d3a58896dca37d.tar.gz
TASS-3f54b80cfa87dfb199de6f9ab0d3a58896dca37d.tar.bz2
mouse coordinate stores are now 11 bits wide. Display coordinates as well thus skin data also.
-rw-r--r--Graphic_Equalizer/include/display_shared.hch8
1 files 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;