diff options
author | Travis Howell | 2005-05-18 08:34:52 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-18 08:34:52 +0000 |
commit | 24275fbb32cd23294af2a7aafcf4c658520165d4 (patch) | |
tree | a3f3127678d7354f6dfa9f536041f5afbab0d959 | |
parent | 1a68fbe1459b8f19f7aa61110ebd99e514d65494 (diff) | |
download | scummvm-rg350-24275fbb32cd23294af2a7aafcf4c658520165d4.tar.gz scummvm-rg350-24275fbb32cd23294af2a7aafcf4c658520165d4.tar.bz2 scummvm-rg350-24275fbb32cd23294af2a7aafcf4c658520165d4.zip |
Add missing else.
svn-id: r18156
-rw-r--r-- | scumm/resource_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp index 7f6088a003..27b62fde91 100644 --- a/scumm/resource_v2.cpp +++ b/scumm/resource_v2.cpp @@ -41,7 +41,7 @@ void ScummEngine_v2::readClassicIndexFile() { _numCostumes = 25; _numScripts = 160; _numSounds = 70; - } if (_platform == Common::kPlatformNES) { + } else if (_platform == Common::kPlatformNES) { _numGlobalObjects = 775; _numRooms = 55; |