aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-11-05 09:23:05 +0000
committerTravis Howell2005-11-05 09:23:05 +0000
commit1f36acc50ba666d0e22d89fe0475c580dede83f7 (patch)
tree8941b516914d749f6eccc215f97b1acf1eaa2eb6 /scumm
parentb9703644d14ea27c30ae053c6b7b001e6e2a75fa (diff)
downloadscummvm-rg350-1f36acc50ba666d0e22d89fe0475c580dede83f7.tar.gz
scummvm-rg350-1f36acc50ba666d0e22d89fe0475c580dede83f7.tar.bz2
scummvm-rg350-1f36acc50ba666d0e22d89fe0475c580dede83f7.zip
Add missing else.
svn-id: r19433
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 87c319b9b0..b71466bf21 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -184,7 +184,7 @@ int ScummEngine::getVerbEntrypoint(int obj, int entry) {
ptr += 2;
} while (1);
return verboffs + 8 + READ_LE_UINT32(ptr + 1);
- } if (_version <= 2) {
+ } else if (_version <= 2) {
do {
if (!*verbptr)
return 0;