From d78aea1846f656b1703bac5b59300982b4eab39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Thu, 14 Apr 2005 00:09:03 +0000 Subject: [PATCH] hides a bug where we appearently read from the cursor out of bounds because of float to int converting issues... need to investigate that. In any case, I got the cursor position thing completely wrong, my intentions of setting it to 0.5, 0.5 were something else... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12385 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/drawing/HWInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/app/drawing/HWInterface.cpp b/src/servers/app/drawing/HWInterface.cpp index 5bfe92ed09..c483d43ecf 100644 --- a/src/servers/app/drawing/HWInterface.cpp +++ b/src/servers/app/drawing/HWInterface.cpp @@ -18,7 +18,7 @@ HWInterface::HWInterface() : BLocker("hw interface lock"), fCursor(NULL), fCursorVisible(true), - fCursorLocation(0.5, 0.5), + fCursorLocation(0, 0), // fUpdateExecutor(new UpdateQueue(this)) fUpdateExecutor(NULL) {