diff options
author | whiterandrek | 2018-05-22 08:21:45 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb (patch) | |
tree | 808a2449a535984b15cf9f206bc1d2ade480823d | |
parent | 22e25ed890bc4dd843939d580f42f71db64a9352 (diff) | |
download | scummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.tar.gz scummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.tar.bz2 scummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.zip |
PINK: remove commas at the end of enumerator lists
-rw-r--r-- | engines/pink/constants.h | 2 | ||||
-rw-r--r-- | engines/pink/objects/inventory.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/pink/constants.h b/engines/pink/constants.h index 9cc624cf64..7e945f8a6a 100644 --- a/engines/pink/constants.h +++ b/engines/pink/constants.h @@ -136,7 +136,7 @@ enum { kOrbMajorVersion = 2, kOrbMinorVersion = 0, kBroMajorVersion = 1, - kBroMinorVersion = 0, + kBroMinorVersion = 0 }; enum { diff --git a/engines/pink/objects/inventory.h b/engines/pink/objects/inventory.h index 02bf9d6182..a6f67c6f87 100644 --- a/engines/pink/objects/inventory.h +++ b/engines/pink/objects/inventory.h @@ -70,7 +70,7 @@ private: void close(); enum Direction { kLeft = 0, - kRight = 1, + kRight = 1 }; void showNextItem(bool direction); @@ -90,7 +90,7 @@ private: kIdle = 0, kOpening = 1, kReady = 2, - kClosing = 3, + kClosing = 3 } _state; bool _isClickedOnItem; }; |