diff options
author | Paul Gilbert | 2015-06-11 22:05:59 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-11 22:05:59 -0400 |
commit | a3e75c2a498644eee386877fcbd30f95014778d7 (patch) | |
tree | 8a034ffc491ad607f8233a0c660cd732ad970ade | |
parent | 3d0e2cb5b000bfa9ff731fc6a83ec402bd9f7aad (diff) | |
download | scummvm-rg350-a3e75c2a498644eee386877fcbd30f95014778d7.tar.gz scummvm-rg350-a3e75c2a498644eee386877fcbd30f95014778d7.tar.bz2 scummvm-rg350-a3e75c2a498644eee386877fcbd30f95014778d7.zip |
SHERLOCK: SS: Remove now redundant namespace prefixes
-rw-r--r-- | engines/sherlock/scalpel/scalpel_people.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sherlock/scalpel/scalpel_people.cpp b/engines/sherlock/scalpel/scalpel_people.cpp index e0abd72842..82840b22a4 100644 --- a/engines/sherlock/scalpel/scalpel_people.cpp +++ b/engines/sherlock/scalpel/scalpel_people.cpp @@ -85,14 +85,14 @@ void ScalpelPerson::adjustSprite() { if (_frameNumber >= (int)_walkSequences[_sequenceNumber]._sequences.size() || _walkSequences[_sequenceNumber][_frameNumber] == 0) { switch (_sequenceNumber) { - case Scalpel::STOP_UP: - case Scalpel::STOP_DOWN: - case Scalpel::STOP_LEFT: - case Scalpel::STOP_RIGHT: - case Scalpel::STOP_UPRIGHT: - case Scalpel::STOP_UPLEFT: - case Scalpel::STOP_DOWNRIGHT: - case Scalpel::STOP_DOWNLEFT: + case STOP_UP: + case STOP_DOWN: + case STOP_LEFT: + case STOP_RIGHT: + case STOP_UPRIGHT: + case STOP_UPLEFT: + case STOP_DOWNRIGHT: + case STOP_DOWNLEFT: // We're in a stop sequence, so reset back to the last frame, so // the character is shown as standing still --_frameNumber; |