aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/verbs.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 578c9327d3..d65dc2e46e 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -488,8 +488,7 @@ void ScummEngine::drawVerbBitmap(int verb, int x, int y) {
}
for (i = 0; i < imgw; i++) {
tmp = xstrip + i;
- if (tmp < gdi._numStrips)
- gdi.drawBitmap(imptr, vs, tmp, ydiff, imgw * 8, imgh * 8, i, 1, Gdi::dbAllowMaskOr);
+ gdi.drawBitmap(imptr, vs, tmp, ydiff, imgw * 8, imgh * 8, i, 1, Gdi::dbAllowMaskOr);
}
vst = &_verbs[verb];