Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorRob Haarsma <phaseIV@zonnet.nl>2003-05-26 15:31:24 +0400
committerRob Haarsma <phaseIV@zonnet.nl>2003-05-26 15:31:24 +0400
commita9fa245cd6a61ebb3e80583150784c3944a4c0b0 (patch)
treeee53bcd6185071b3dde581b1f1a6eb442b95c256 /intern
parentd5a2c705e5e9b413938f88111ed9b4b8dbedaf42 (diff)
removed a mousecoords printf message
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index d1242198d4e..1db695d8107 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -470,7 +470,6 @@ GHOST_EventCursor* GHOST_SystemWin32::processCursorEvent(GHOST_TEventType type,
{
GHOST_TInt32 x, y;
getSystem()->getCursorPosition(x, y);
- printf("%d %d\n",x,y);
return new GHOST_EventCursor (getSystem()->getMilliSeconds(), type, window, x, y);
}