diff options
author | Strangerke | 2014-10-06 08:26:22 +0200 |
---|---|---|
committer | Strangerke | 2014-10-06 08:26:22 +0200 |
commit | 65fc33fcc795b1596187dbe93b4adb7166e86541 (patch) | |
tree | 2b19a2b94c51ad61086d4ba9f9f2c5fba51c5fac /engines | |
parent | cd678117b7ea183657d83d2eaae69029699c8598 (diff) | |
download | scummvm-rg350-65fc33fcc795b1596187dbe93b4adb7166e86541.tar.gz scummvm-rg350-65fc33fcc795b1596187dbe93b4adb7166e86541.tar.bz2 scummvm-rg350-65fc33fcc795b1596187dbe93b4adb7166e86541.zip |
TSAGE: R2R - Fix card drawing choice when player #2 plays a special card #25
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_scenes1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp index 6c124fa35a..393e3d1099 100644 --- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp +++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp @@ -3976,7 +3976,7 @@ void Scene1337::Action10::signal() { } } -// Use trick (card #25 - thieft ?) and pick a card from the opponent +// Use Thieft card (#25) and pick a card from the opponent void Scene1337::Action11::signal() { Scene1337 *scene = (Scene1337 *)R2_GLOBALS._sceneManager._scene; @@ -4107,7 +4107,7 @@ void Scene1337::Action11::signal() { int count = 0; if (scene->_actionVictimIdx != 2) { for (i = 0; i <= 3; i++) { - if (scene->_gameBoardSide[scene->_actionVictimIdx]._handCard[i]._cardId == 0) + if (scene->_gameBoardSide[scene->_actionVictimIdx]._handCard[i]._cardId != 0) ++count; } } |