aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-02-21 12:43:18 +0000
committerTravis Howell2005-02-21 12:43:18 +0000
commit99bf57e7b8cf6e116b9dbb81941d09bba24aaf65 (patch)
treecf221495b156781b29faa676398c958752658bae /scumm
parentc7dad332fa6f8cf3ae88d638cd0c990524966e14 (diff)
downloadscummvm-rg350-99bf57e7b8cf6e116b9dbb81941d09bba24aaf65.tar.gz
scummvm-rg350-99bf57e7b8cf6e116b9dbb81941d09bba24aaf65.tar.bz2
scummvm-rg350-99bf57e7b8cf6e116b9dbb81941d09bba24aaf65.zip
Typos
svn-id: r16850
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sprite_he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sprite_he.cpp b/scumm/sprite_he.cpp
index 5a1e1fbf38..475cf4390d 100644
--- a/scumm/sprite_he.cpp
+++ b/scumm/sprite_he.cpp
@@ -305,7 +305,7 @@ void ScummEngine_v90he::spriteInfoSet_tx_ty(int spriteId, int value1, int value2
void ScummEngine_v90he::spriteInfoSet_groupNum(int spriteId, int value) {
checkRange(_varNumSprites, 1, spriteId, "Invalid sprite %d");
- checkRange(_varNumSpriteGroups, 1, value, "Invalid sprite group%d");
+ checkRange(_varNumSpriteGroups, 0, value, "Invalid sprite group %d");
_spriteTable[spriteId].group_num = value;
}