From e35b894e6c7dec992510aa4a6b2e6da0299e7e84 Mon Sep 17 00:00:00 2001 From: "giwoong.kim" Date: Thu, 8 Mar 2012 23:10:44 +0900 Subject: [PATCH] [Title] modified mouse event position [Type] [Module] [Priority] [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] --- tizen/src/hw/maru_touchscreen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tizen/src/hw/maru_touchscreen.c b/tizen/src/hw/maru_touchscreen.c index d0e0f4c..41db0ff 100755 --- a/tizen/src/hw/maru_touchscreen.c +++ b/tizen/src/hw/maru_touchscreen.c @@ -135,8 +135,8 @@ static void usb_touchscreen_event(void *opaque, int x, int y, int z, int buttons USBTouchscreenState *s = opaque; /* scale to resolution */ - s->dx = (x * TOUCHSCREEN_RESOLUTION_X / 0x7FFF); - s->dy = (y * TOUCHSCREEN_RESOLUTION_Y / 0x7FFF); + s->dx = x; //(x * TOUCHSCREEN_RESOLUTION_X / 0x7FFF); + s->dy = y; //(y * TOUCHSCREEN_RESOLUTION_Y / 0x7FFF); s->dz = z; s->buttons_state = buttons_state; s->changed = 1; -- 2.7.4