diff options
author | Strangerke | 2014-12-17 23:21:13 +0100 |
---|---|---|
committer | Strangerke | 2014-12-17 23:21:13 +0100 |
commit | a9903237034859883618de2b86a08fe5ec572881 (patch) | |
tree | 95909fa97ef6e6c4bd86526f5ebab37948e50b88 | |
parent | cd4183a4638e964cc7b4c6b5c7e31c1bec9ffb99 (diff) | |
download | scummvm-rg350-a9903237034859883618de2b86a08fe5ec572881.tar.gz scummvm-rg350-a9903237034859883618de2b86a08fe5ec572881.tar.bz2 scummvm-rg350-a9903237034859883618de2b86a08fe5ec572881.zip |
ACCESS: Format the definition of ImagerFlag
and fix a comment
-rw-r--r-- | engines/access/animation.cpp | 2 | ||||
-rw-r--r-- | engines/access/asurface.h | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/engines/access/animation.cpp b/engines/access/animation.cpp index 045382aa0a..548e7db02d 100644 --- a/engines/access/animation.cpp +++ b/engines/access/animation.cpp @@ -191,7 +191,7 @@ void Animation::anim4() { } void Animation::animNone() { - // No implementation + // Empty implementation } void Animation::anim7() { diff --git a/engines/access/asurface.h b/engines/access/asurface.h index 833927e4ba..6ffbf0e25e 100644 --- a/engines/access/asurface.h +++ b/engines/access/asurface.h @@ -138,8 +138,12 @@ public: SpriteFrame *getFrame(int idx) { return _frames[idx]; } }; -enum ImageFlag { IMGFLAG_CROPPED = 1, IMGFLAG_BACKWARDS = 2, IMGFLAG_DRAWN = 4, - IMGFLAG_UNSCALED = 8 }; +enum ImageFlag { + IMGFLAG_CROPPED = 1, + IMGFLAG_BACKWARDS = 2, + IMGFLAG_DRAWN = 4, + IMGFLAG_UNSCALED = 8 +}; class ImageEntry { public: |