diff options
| author | dhewg | 2011-03-14 23:44:43 +0100 | 
|---|---|---|
| committer | dhewg | 2011-03-15 00:05:59 +0100 | 
| commit | 7b850c18c7303fa06ff357cf2295e868a16ed1cf (patch) | |
| tree | 1fe926617fd2f9e9748171bb182c27d04526cb90 /backends/platform/android/android.h | |
| parent | 8f40a18146a1a16a5a1d3932e08c2f45e53ea000 (diff) | |
| download | scummvm-rg350-7b850c18c7303fa06ff357cf2295e868a16ed1cf.tar.gz scummvm-rg350-7b850c18c7303fa06ff357cf2295e868a16ed1cf.tar.bz2 scummvm-rg350-7b850c18c7303fa06ff357cf2295e868a16ed1cf.zip | |
ANDROID: Cleanup
Diffstat (limited to 'backends/platform/android/android.h')
| -rw-r--r-- | backends/platform/android/android.h | 18 | 
1 files changed, 1 insertions, 17 deletions
| diff --git a/backends/platform/android/android.h b/backends/platform/android/android.h index db2cb95650..dc45f06cb6 100644 --- a/backends/platform/android/android.h +++ b/backends/platform/android/android.h @@ -229,23 +229,7 @@ public:  									int x, int y, int w, int h);  	virtual int16 getOverlayHeight();  	virtual int16 getOverlayWidth(); - -	// RGBA 4444 -	virtual Graphics::PixelFormat getOverlayFormat() const { -		Graphics::PixelFormat format; - -		format.bytesPerPixel = 2; -		format.rLoss = 8 - 4; -		format.gLoss = 8 - 4; -		format.bLoss = 8 - 4; -		format.aLoss = 8 - 4; -		format.rShift = 3 * 4; -		format.gShift = 2 * 4; -		format.bShift = 1 * 4; -		format.aShift = 0 * 4; - -		return format; -	} +	virtual Graphics::PixelFormat getOverlayFormat() const;  	virtual bool showMouse(bool visible); | 
