summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:50:12 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-01-20 07:50:12 (GMT)
commit81ac07a0b1b5ea784473531ca8103f5c3882f7c3 (patch)
tree52b5011bbc9164c7c7458bb8fe88370d415a5ca4
parentcc78e6490fefe97364ddd93533b213d938de2e37 (diff)
downloadTASS-81ac07a0b1b5ea784473531ca8103f5c3882f7c3.zip
TASS-81ac07a0b1b5ea784473531ca8103f5c3882f7c3.tar.gz
TASS-81ac07a0b1b5ea784473531ca8103f5c3882f7c3.tar.bz2
mouse coordinate stores are now 11 bits wide. The RC200 supplies us with 10 and 9 bits wide variables. We make those fit.
-rw-r--r--Graphic_Equalizer/src/mouse.hcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphic_Equalizer/src/mouse.hcc b/Graphic_Equalizer/src/mouse.hcc
index 0e1a223..84c324f 100644
--- a/Graphic_Equalizer/src/mouse.hcc
+++ b/Graphic_Equalizer/src/mouse.hcc
@@ -108,7 +108,7 @@ inline void mouse_main(mousedata_t *mousedata) {
oldx = x;
oldy = y;
oldmousestate = mousestate;
- mousedata->x = x;
+ mousedata->x = 0 @ x;
mousedata->y = 0 @ y;
mousedata->state = mousestate;
mousedata->status = MOUSE_UPDATED;