From 549360d8220aecd0df87fd3df38ff43030efcc4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Fri, 1 Oct 2004 16:02:20 +0000 Subject: [PATCH] i don't even wonder why i have to do this, i simply do it git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9150 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/input/InputServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/input/InputServer.cpp b/src/servers/input/InputServer.cpp index 5c0f6599a1..611d55ab5f 100644 --- a/src/servers/input/InputServer.cpp +++ b/src/servers/input/InputServer.cpp @@ -681,7 +681,7 @@ InputServer::HandleSetMousePosition(BMessage *message, BMessage *outbound) if((outbound->FindInt32("x", &xValue) == B_OK) && (outbound->FindInt32("y", &yValue) == B_OK)) { fMousePos.x += xValue; - fMousePos.y += yValue; + fMousePos.y -= yValue; outbound->RemoveName("x"); outbound->RemoveName("y"); outbound->AddPoint("where", fMousePos);