diff options
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/sequence.cpp | 2 |
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; |