From f9673182254d2a3ea4bb770ce031d89985c8cba9 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Fri, 5 Feb 2010 21:09:36 +0000 Subject: SCI: remaining cursor functions now also directly called svn-id: r47914 --- engines/sci/graphics/coordadjuster.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'engines/sci/graphics/coordadjuster.h') diff --git a/engines/sci/graphics/coordadjuster.h b/engines/sci/graphics/coordadjuster.h index 4c9cc1a11a..e1fed1a539 100644 --- a/engines/sci/graphics/coordadjuster.h +++ b/engines/sci/graphics/coordadjuster.h @@ -47,7 +47,8 @@ public: virtual void kernelLocalToGlobal(int16 &x, int16 &y, reg_t planeObject = NULL_REG) { }; virtual Common::Rect onControl(Common::Rect rect) { return rect; }; - + virtual void setCursorPos(Common::Point &pos) { }; + virtual void moveCursor(Common::Point &pos) { }; private: }; @@ -60,6 +61,8 @@ public: void kernelLocalToGlobal(int16 &x, int16 &y, reg_t planeObject = NULL_REG); Common::Rect onControl(Common::Rect rect); + void setCursorPos(Common::Point &pos); + void moveCursor(Common::Point &pos); private: GfxPorts *_ports; -- cgit v1.2.3