SHERLOCK: Remove comma from end of ScalpelSequences enum

This commit is contained in:
Paul Gilbert 2015-06-06 22:52:18 -04:00
parent 933e675194
commit 63174de3a6

View File

@ -38,7 +38,7 @@ enum ScalpelSequences {
STOP_DOWN = 5, STOP_RIGHT = 6, STOP_UP = 7, WALK_UPRIGHT = 8,
WALK_DOWNRIGHT = 9, WALK_UPLEFT = 10, WALK_DOWNLEFT = 11,
STOP_UPRIGHT = 12, STOP_UPLEFT = 13, STOP_DOWNRIGHT = 14,
STOP_DOWNLEFT = 15, TALK_RIGHT = 6, TALK_LEFT = 4,
STOP_DOWNLEFT = 15, TALK_RIGHT = 6, TALK_LEFT = 4
};
class ScalpelPeople : public People {