diff options
author | Paul Gilbert | 2014-04-12 17:15:05 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-04-12 17:15:05 -0400 |
commit | 41ea3e237459091338e6057c5cc759dd65451c98 (patch) | |
tree | 454d1dcae1e2f80ff4471febe21b74daef532fe5 /engines | |
parent | d41833e8e587c3cf53c3e3263b32169fb6d1e353 (diff) | |
download | scummvm-rg350-41ea3e237459091338e6057c5cc759dd65451c98.tar.gz scummvm-rg350-41ea3e237459091338e6057c5cc759dd65451c98.tar.bz2 scummvm-rg350-41ea3e237459091338e6057c5cc759dd65451c98.zip |
MADS: Fix misspelling in if statement
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/animation.cpp b/engines/mads/animation.cpp index b79a753c28..d5b8e21fae 100644 --- a/engines/mads/animation.cpp +++ b/engines/mads/animation.cpp @@ -326,7 +326,7 @@ void Animation::load(UserInterface &interfaceSurface, MSurface &depthSurface, for (int idx = 0; idx < _header._spriteSetsCount; ++idx) usageList.push_back(_spriteSets[idx]->_usageIndex); - if (usageList.size() > 0 > 0) + if (usageList.size() > 0) _vm->_palette->_paletteUsage.updateUsage(usageList, _header._messagesCount); if (_header._animMode == 4) { |