diff options
author | Johannes Schickel | 2009-05-10 17:22:08 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-10 17:22:08 +0000 |
commit | 02aa7dfdfd4166c97144835d30ef3a83633f8e32 (patch) | |
tree | eb1b016659a8451229e175a1dbe16b5d81ae3de9 /engines | |
parent | 2cc77639715214573637375655442d2208898a38 (diff) | |
download | scummvm-rg350-02aa7dfdfd4166c97144835d30ef3a83633f8e32.tar.gz scummvm-rg350-02aa7dfdfd4166c97144835d30ef3a83633f8e32.tar.bz2 scummvm-rg350-02aa7dfdfd4166c97144835d30ef3a83633f8e32.zip |
Fix accidental assignment in if condition.
svn-id: r40425
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/lol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index bdc0364c5a..c45d23b2d3 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -2377,7 +2377,7 @@ void LoLEngine::processMagicIce(int charNum, int spellLevel) { //uint8 pal2[768]; //uint8 pal3[768]; - if (_currentLevel = 11 && !(_freezeStateFlags & 4)) { + if (_currentLevel == 11 && !(_freezeStateFlags & 4)) { for (int i = 1; i < 384; i++) { ///////// TODO |