aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/pet_control/pet_frame.cpp2
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);
}