about summary refs log tree commit diff
path: root/src/engine/input.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-10-13 12:47:42 +0200
committeroy <Tom_Adams@web.de>2010-10-13 12:47:42 +0200
commite4fe7457c8acdb479e91a79cf832c48d10898be5 (patch)
treee16e3d219060b1f366720c1663ef661086c8224e /src/engine/input.h
parentc828f7d725d9b243e094b44f62a844a9b47790a5 (diff)
downloadzcatch-e4fe7457c8acdb479e91a79cf832c48d10898be5.tar.gz
zcatch-e4fe7457c8acdb479e91a79cf832c48d10898be5.zip
fixed problems with the mouse movement. Closes #214
Diffstat (limited to 'src/engine/input.h')
-rw-r--r--src/engine/input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/input.h b/src/engine/input.h
index 168614c8..3caf02e7 100644
--- a/src/engine/input.h
+++ b/src/engine/input.h
@@ -72,7 +72,7 @@ public:
 	virtual void MouseModeAbsolute() = 0;
 	virtual int MouseDoubleClick() = 0;
 	
-	virtual void MouseRelative(int *x, int *y) = 0;
+	virtual void MouseRelative(float *x, float *y) = 0;
 };