aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/inventory.h
diff options
context:
space:
mode:
authorwhiterandrek2018-05-22 08:21:45 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitf6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb (patch)
tree808a2449a535984b15cf9f206bc1d2ade480823d /engines/pink/objects/inventory.h
parent22e25ed890bc4dd843939d580f42f71db64a9352 (diff)
downloadscummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.tar.gz
scummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.tar.bz2
scummvm-rg350-f6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb.zip
PINK: remove commas at the end of enumerator lists
Diffstat (limited to 'engines/pink/objects/inventory.h')
-rw-r--r--engines/pink/objects/inventory.h4
1 files changed, 2 insertions, 2 deletions
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;
};