aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics/transform_struct.h
diff options
context:
space:
mode:
authorTobia Tesan2013-07-15 22:24:46 +0200
committerTobia Tesan2013-08-01 00:14:29 +0200
commit63b8132ea3ec6fe6bcfcb43d1e0c9baf481eab1e (patch)
treeb7804ecf6ece6a62375c05ff8289254ab8911faf /engines/wintermute/graphics/transform_struct.h
parent06ec0067665c4aa2369ea0b3b451ca0e7b2951c1 (diff)
downloadscummvm-rg350-63b8132ea3ec6fe6bcfcb43d1e0c9baf481eab1e.tar.gz
scummvm-rg350-63b8132ea3ec6fe6bcfcb43d1e0c9baf481eab1e.tar.bz2
scummvm-rg350-63b8132ea3ec6fe6bcfcb43d1e0c9baf481eab1e.zip
WINTERMUTE: Remove single-argument zoom, rename mirrorX => getMirrorX() in transform_struct.h
Diffstat (limited to 'engines/wintermute/graphics/transform_struct.h')
-rw-r--r--engines/wintermute/graphics/transform_struct.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/wintermute/graphics/transform_struct.h b/engines/wintermute/graphics/transform_struct.h
index 1f7d556fe7..6b021b5cd5 100644
--- a/engines/wintermute/graphics/transform_struct.h
+++ b/engines/wintermute/graphics/transform_struct.h
@@ -48,10 +48,7 @@ private:
public:
TransformStruct(int32 zoomX, int32 zoomY, uint32 angle, int32 hotspotX, int32 hotspotY, TSpriteBlendMode blendMode, uint32 alpha, bool mirrorX = false, bool mirrorY = false, int32 offsetX = 0, int32 offsetY = 0);
TransformStruct(int32 zoomX, int32 zoomY, TSpriteBlendMode blendMode, uint32 alpha, bool mirrorX = false, bool mirrorY = false);
- TransformStruct(int32 zoom, TSpriteBlendMode blendMode, uint32 alpha, bool mirrorX, bool mirrorY);
- TransformStruct(int32 zoom, bool mirrorX, bool mirrorY);
TransformStruct(int32 zoomX, int32 zoomY, uint32 angle, int32 hotspotX = 0, int32 hotspotY = 0);
- TransformStruct(int32 zoom);
TransformStruct();
Point32 _zoom; ///< Zoom; 100 = no zoom
@@ -63,8 +60,8 @@ public:
uint32 _rgbaMod; ///< RGBa
Point32 _offset;
- bool mirrorX() const;
- bool mirrorY() const;
+ bool getMirrorX() const;
+ bool getMirrorY() const;
bool operator==(const TransformStruct &compare) const {
return (compare._angle == _angle &&