aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/string.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index f31c25e7cb..bb33381617 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -1125,9 +1125,12 @@ int CharsetRenderer::getSpacing(byte chr, byte *charset)
}
}
}
-
- // FIXME - this fixes the inventory icons in Zak256, see bug #613109
- if (_vm->_gameId == GID_ZAK256 && (chr==3 || chr==4))
+
+ // FIXME - this fixes the inventory icons in Zak256/Indy3
+ // see bug #613109.
+ // chars 1,2: up arrow chars 3,4: down arrow
+ if ((_vm->_gameId == GID_ZAK256 || _vm->_gameId == GID_INDY3_256)
+ && (chr >= 1 && chr <= 4))
spacing = 6;
return spacing;