From ed54ea9155961d8ca5d5fb3c7777fc57a29f2751 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 17 Mar 2007 19:02:05 +0000 Subject: Moved Event/EventType/keyboard enum from common/system.h (part of class OSystem) to common/events.h (part of namespace Common). Porters may have to make minor changes to their backends to get them to compile again svn-id: r26180 --- backends/platform/null/null.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/platform/null') diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp index 0aa6a5d978..c13e8e56ff 100644 --- a/backends/platform/null/null.cpp +++ b/backends/platform/null/null.cpp @@ -76,7 +76,7 @@ public: virtual void warpMouse(int x, int y); virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, byte keycolor = 255); - virtual bool pollEvent(Event &event); + virtual bool pollEvent(Common::Event &event); virtual uint32 getMillis(); virtual void delayMillis(uint msecs); @@ -232,7 +232,7 @@ void OSystem_NULL::warpMouse(int x, int y) { void OSystem_NULL::setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, byte keycolor) { } -bool OSystem_NULL::pollEvent(Event &event) { +bool OSystem_NULL::pollEvent(Common::Event &event) { return false; } -- cgit v1.2.3