aboutsummaryrefslogtreecommitdiff
path: root/engines/mads
diff options
context:
space:
mode:
authorFilippos Karapetis2015-10-22 03:21:54 +0300
committerFilippos Karapetis2015-10-22 03:21:54 +0300
commitfac601ae2ec7efea502d4c75e8f2941ab7ca1c46 (patch)
tree09249f6be2c4a8b90885810f5e830b2253716dc6 /engines/mads
parent9bfa51ef300cf95872ca2325b7bd0d64f85372e6 (diff)
downloadscummvm-rg350-fac601ae2ec7efea502d4c75e8f2941ab7ca1c46.tar.gz
scummvm-rg350-fac601ae2ec7efea502d4c75e8f2941ab7ca1c46.tar.bz2
scummvm-rg350-fac601ae2ec7efea502d4c75e8f2941ab7ca1c46.zip
MADS: Fix typo
Diffstat (limited to 'engines/mads')
-rw-r--r--engines/mads/sequence.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/sequence.cpp b/engines/mads/sequence.cpp
index 669f3c4bd8..52d5d121d7 100644
--- a/engines/mads/sequence.cpp
+++ b/engines/mads/sequence.cpp
@@ -259,7 +259,7 @@ bool SequenceList::loadSprites(int seqIndex) {
}
if (seqEntry._flags & 2) {
- // Check for object having moved off-scren
+ // Check for object having moved off-screen
if ((pt.x + width) < 0 || (pt.x + width) >= MADS_SCREEN_WIDTH ||
pt.y < 0 || (pt.y - height) >= MADS_SCENE_HEIGHT) {
result = true;