diff options
author | Johannes Schickel | 2013-08-04 00:52:52 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-04 00:53:25 +0200 |
commit | b95858bb918c94158df8ee65ce305b30dd9564b8 (patch) | |
tree | 4a644f5c385ebe6e01a0c3f4fc3cf3f81fad2305 | |
parent | 1ce54c217a98bd80fa38ecba2562997ce00b01a3 (diff) | |
download | scummvm-rg350-b95858bb918c94158df8ee65ce305b30dd9564b8.tar.gz scummvm-rg350-b95858bb918c94158df8ee65ce305b30dd9564b8.tar.bz2 scummvm-rg350-b95858bb918c94158df8ee65ce305b30dd9564b8.zip |
WINTERMUTE: Small formatting fixes.
-rw-r--r-- | engines/wintermute/graphics/transparent_surface.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/wintermute/graphics/transparent_surface.h b/engines/wintermute/graphics/transparent_surface.h index 4287aabcdc..f2a0c1852a 100644 --- a/engines/wintermute/graphics/transparent_surface.h +++ b/engines/wintermute/graphics/transparent_surface.h @@ -63,16 +63,16 @@ struct TransparentSurface : public Graphics::Surface { @brief The possible flipping parameters for the blit methode. */ enum FLIP_FLAGS { - /// The image will not be flipped. - FLIP_NONE = 0, - /// The image will be flipped at the horizontal axis. - FLIP_H = 1, - /// The image will be flipped at the vertical axis. - FLIP_V = 2, - /// The image will be flipped at the horizontal and vertical axis. - FLIP_HV = FLIP_H | FLIP_V, - /// The image will be flipped at the horizontal and vertical axis. - FLIP_VH = FLIP_H | FLIP_V + /// The image will not be flipped. + FLIP_NONE = 0, + /// The image will be flipped at the horizontal axis. + FLIP_H = 1, + /// The image will be flipped at the vertical axis. + FLIP_V = 2, + /// The image will be flipped at the horizontal and vertical axis. + FLIP_HV = FLIP_H | FLIP_V, + /// The image will be flipped at the horizontal and vertical axis. + FLIP_VH = FLIP_H | FLIP_V }; bool _enableAlphaBlit; |