summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:51:35 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:51:35 (GMT)
commit3447b1faca0ce53dfdc7b2706d47cd045e5a747f (patch)
tree9c7dbdeeabe18831c77fd9149f0b620115c5b7ef
parent41ab49da7dece2a57bef290734e67ba10eeee942 (diff)
downloadTASS-3447b1faca0ce53dfdc7b2706d47cd045e5a747f.zip
TASS-3447b1faca0ce53dfdc7b2706d47cd045e5a747f.tar.gz
TASS-3447b1faca0ce53dfdc7b2706d47cd045e5a747f.tar.bz2
mouse coordinate stores are now 11 bits wide.
-rw-r--r--Graphic_Equalizer/include/mouse_shared.hch3
1 files changed, 2 insertions, 1 deletions
diff --git a/Graphic_Equalizer/include/mouse_shared.hch b/Graphic_Equalizer/include/mouse_shared.hch
index 09c5021..58d22a7 100644
--- a/Graphic_Equalizer/include/mouse_shared.hch
+++ b/Graphic_Equalizer/include/mouse_shared.hch
@@ -25,7 +25,8 @@
* Type definition of the shared memory to be used in various processes
*/
typedef struct {
- unsigned 10 x, y;
+ unsigned 11 x;
+ unsigned 11 y;
unsigned 3 state;
unsigned 1 status;
} mousedata_t;