diff options
author | Paul Gilbert | 2016-04-17 22:05:44 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-07-10 16:11:24 -0400 |
commit | ca68e85f3791aa35e5ccc0f3d6cc33a9f71f7f48 (patch) | |
tree | 77caca35f7e43b358935d25255340391833c6726 /engines | |
parent | fc33bc4182056864b479e4abd0387deab0670ec6 (diff) | |
download | scummvm-rg350-ca68e85f3791aa35e5ccc0f3d6cc33a9f71f7f48.tar.gz scummvm-rg350-ca68e85f3791aa35e5ccc0f3d6cc33a9f71f7f48.tar.bz2 scummvm-rg350-ca68e85f3791aa35e5ccc0f3d6cc33a9f71f7f48.zip |
TITANIC: Fix to partially display PET inventory
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/pet_control/pet_frame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_frame.cpp b/engines/titanic/pet_control/pet_frame.cpp index 25d67fb661..ec604a2b5c 100644 --- a/engines/titanic/pet_control/pet_frame.cpp +++ b/engines/titanic/pet_control/pet_frame.cpp @@ -145,7 +145,7 @@ void CPetFrame::drawFrame(CScreenManager *screenManager) { void CPetFrame::drawIndent(CScreenManager *screenManager, int indent) { indent = CLIP(indent, 0, 7); - for (int idx = 0; idx < indent; ++indent) + for (int idx = 0; idx < indent; ++idx) _indent[idx].draw(screenManager); } |