From 5e56184616d6ab0f971b0e84bb62756219ae786c Mon Sep 17 00:00:00 2001
From: Joost Peters <joostp@scummvm.org>
Date: Wed, 18 Nov 2009 22:59:31 +0000
Subject: [PATCH] fix compilation of null backend

svn-id: r45979
---
 backends/platform/null/null.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp
index 26e4654dded..1539dfe8fdc 100644
--- a/backends/platform/null/null.cpp
+++ b/backends/platform/null/null.cpp
@@ -74,7 +74,7 @@ public:
 	bool setGraphicsMode(const char *name);
 	virtual bool setGraphicsMode(int mode);
 	virtual int getGraphicsMode() const;
-	virtual void initSize(uint width, uint height);
+	virtual void initSize(uint width, uint height, const Graphics::PixelFormat *format);
 	virtual int16 getHeight();
 	virtual int16 getWidth();
 	virtual void setPalette(const byte *colors, uint start, uint num);
@@ -97,7 +97,7 @@ public:
 	virtual bool showMouse(bool visible);
 
 	virtual void warpMouse(int x, int y);
-	virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, byte keycolor = 255, int cursorTargetScale = 1);
+	virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format);
 
 	virtual bool pollEvent(Common::Event &event);
 	virtual uint32 getMillis();
@@ -197,7 +197,7 @@ int OSystem_NULL::getGraphicsMode() const {
 	return -1;
 }
 
-void OSystem_NULL::initSize(uint width, uint height) {
+void OSystem_NULL::initSize(uint width, uint height, const Graphics::PixelFormat *format) {
 }
 
 int16 OSystem_NULL::getHeight() {
@@ -262,7 +262,7 @@ bool OSystem_NULL::showMouse(bool visible) {
 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, int cursorTargetScale) {
+void OSystem_NULL::setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format) {
 }
 
 bool OSystem_NULL::pollEvent(Common::Event &event) {