diff options
Diffstat (limited to 'backends/platform/iphone')
| -rw-r--r-- | backends/platform/iphone/osys_main.h | 2 | ||||
| -rw-r--r-- | backends/platform/iphone/osys_video.cpp | 4 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/iphone/osys_main.h b/backends/platform/iphone/osys_main.h index 5e88510980..25c3c40cf9 100644 --- a/backends/platform/iphone/osys_main.h +++ b/backends/platform/iphone/osys_main.h @@ -81,7 +81,7 @@ protected:  	bool _mouseVisible;  	byte *_mouseBuf; -	byte _mouseKeyColour; +	byte _mouseKeyColor;  	uint _mouseWidth, _mouseHeight;  	uint _mouseX, _mouseY;  	int _mouseHotspotX, _mouseHotspotY; diff --git a/backends/platform/iphone/osys_video.cpp b/backends/platform/iphone/osys_video.cpp index d67d38932a..c5e7ab8413 100644 --- a/backends/platform/iphone/osys_video.cpp +++ b/backends/platform/iphone/osys_video.cpp @@ -312,7 +312,7 @@ void OSystem_IPHONE::drawMouseCursorOnRectUpdate(const Common::Rect& updatedRect  		uint16 *dst = &_fullscreen[top * _screenWidth + left];  		for (int y = displayHeight; y > srcY; y--) {  			for (int x = displayWidth; x > srcX; x--) { -				if (*src != _mouseKeyColour) +				if (*src != _mouseKeyColor)  					*dst = _palette[*src];  				dst++;  				src++; @@ -497,7 +497,7 @@ void OSystem_IPHONE::setMouseCursor(const byte *buf, uint w, uint h, int hotspot  	_mouseHotspotX = hotspotX;  	_mouseHotspotY = hotspotY; -	_mouseKeyColour = (byte)keycolor; +	_mouseKeyColor = (byte)keycolor;  	memcpy(_mouseBuf, buf, w * h);  | 
