From 81ac07a0b1b5ea784473531ca8103f5c3882f7c3 Mon Sep 17 00:00:00 2001 From: Oliver Schinagl Date: Thu, 20 Jan 2005 07:50:12 +0000 Subject: mouse coordinate stores are now 11 bits wide. The RC200 supplies us with 10 and 9 bits wide variables. We make those fit. --- Graphic_Equalizer/src/mouse.hcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12