aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 1628106ea6..19a2b558f4 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -789,7 +789,7 @@ void ScummEngine_v2::o2_verbOps() {
switch (verb) {
case 0: // SO_DELETE_VERBS
slot = getVarOrDirectByte(PARAM_1) + 1;
- assert(0 < slot && slot < _maxVerbs);
+ assert(0 < slot && slot < _numVerbs);
//printf("o2_verbOps delete slot = %d\n", slot);
killVerb(slot);
@@ -819,7 +819,7 @@ void ScummEngine_v2::o2_verbOps() {
// verb, slot, x, y, prep, _scriptPointer);
VerbSlot *vs;
- assert(0 < slot && slot < _maxVerbs);
+ assert(0 < slot && slot < _numVerbs);
vs = &_verbs[slot];
vs->verbid = verb;