Add missing else.

svn-id: r19433
This commit is contained in:
Travis Howell 2005-11-05 09:23:05 +00:00
parent b9703644d1
commit 1f36acc50b

View file

@ -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;