aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2015-06-14 15:53:03 -0400
committerPaul Gilbert2015-06-14 15:53:03 -0400
commit6ab3857597980e9f525354557d247b1dbb2c144a (patch)
tree2e533a560579fc9213df78f0887fbd7a0f3f6691 /engines
parentbc0a839175899462bc4a79a6e4f3853ac5ee9aaf (diff)
downloadscummvm-rg350-6ab3857597980e9f525354557d247b1dbb2c144a.tar.gz
scummvm-rg350-6ab3857597980e9f525354557d247b1dbb2c144a.tar.bz2
scummvm-rg350-6ab3857597980e9f525354557d247b1dbb2c144a.zip
SHERLOCK: RT: Fix loading of _altImages when necessary
Diffstat (limited to 'engines')
-rw-r--r--engines/sherlock/tattoo/tattoo_people.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_people.cpp b/engines/sherlock/tattoo/tattoo_people.cpp
index 72abdc371d..80f2484c6b 100644
--- a/engines/sherlock/tattoo/tattoo_people.cpp
+++ b/engines/sherlock/tattoo/tattoo_people.cpp
@@ -558,7 +558,7 @@ void TattooPerson::checkWalkGraphics() {
if (npcNum != -1) {
// See if the VGS file called for is different than the main graphics which are already loaded
- if (!filename.compareToIgnoreCase(people[npcNum]._walkVGSName)) {
+ if (filename.compareToIgnoreCase(people[npcNum]._walkVGSName) != 0) {
// See if this is one of the more used Walk Graphics stored in WALK.LIB
for (int idx = 0; idx < NUM_IN_WALK_LIB; ++idx) {
if (!scumm_stricmp(filename.c_str(), WALK_LIB_NAMES[idx])) {