diff options
author | Eugene Sandulenko | 2019-11-06 22:23:30 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-13 22:07:08 +0100 |
commit | 85918451d1e044d52ffc886abc4fa753b00495e3 (patch) | |
tree | 3cfc0880da46a708a66239dcc90c99089ccba2b7 /engines/griffon/engine.cpp | |
parent | 84e6e1b8c506970ff7351515057e30313b013b43 (diff) | |
download | scummvm-rg350-85918451d1e044d52ffc886abc4fa753b00495e3.tar.gz scummvm-rg350-85918451d1e044d52ffc886abc4fa753b00495e3.tar.bz2 scummvm-rg350-85918451d1e044d52ffc886abc4fa753b00495e3.zip |
GRIFFON: Fix warning
Diffstat (limited to 'engines/griffon/engine.cpp')
-rw-r--r-- | engines/griffon/engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/griffon/engine.cpp b/engines/griffon/engine.cpp index 5c0a28d791..7a270312dc 100644 --- a/engines/griffon/engine.cpp +++ b/engines/griffon/engine.cpp @@ -278,7 +278,7 @@ void GriffonEngine::newGame() { _player.shield = 0; _player.armour = 0; for (int i = 0; i < 5; i++) { - _player.foundSpell[i] = false; + _player.foundSpell[i] = 0; _player.spellCharge[i] = 0; _player.inventory[i] = 0; } |