diff options
author | Tobia Tesan | 2013-09-08 18:03:53 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2013-09-23 19:05:58 +0200 |
commit | c0c3854fe2bcdd7ec986c26edcce1c2d93797a19 (patch) | |
tree | ee540b7782c848c7ea2b7c8a0eee6dd63f63ab4d | |
parent | 01b5f0ffdc815ca69c1a19fdca415302a30220df (diff) | |
download | scummvm-rg350-c0c3854fe2bcdd7ec986c26edcce1c2d93797a19.tar.gz scummvm-rg350-c0c3854fe2bcdd7ec986c26edcce1c2d93797a19.tar.bz2 scummvm-rg350-c0c3854fe2bcdd7ec986c26edcce1c2d93797a19.zip |
WINTERMUTE: Match type of angle constant to struct in TransformStruct, silence warnings
-rw-r--r-- | engines/wintermute/graphics/transform_struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/graphics/transform_struct.h b/engines/wintermute/graphics/transform_struct.h index 702664a72d..2d98dc4599 100644 --- a/engines/wintermute/graphics/transform_struct.h +++ b/engines/wintermute/graphics/transform_struct.h @@ -55,7 +55,7 @@ public: Point32 _zoom; ///< Zoom; 100 = no zoom Point32 _hotspot; ///< Position of the hotspot - uint32 _angle; ///< Rotation angle, in degrees + int32 _angle; ///< Rotation angle, in degrees byte _flip; ///< Bitflag: see TransparentSurface::FLIP_XXX bool _alphaDisable; TSpriteBlendMode _blendMode; |