From 95c23c4cc8801fbbcbce94c5a09194eb764c81ae Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 17 Apr 2005 03:09:03 +0000 Subject: Missing brackets. svn-id: r17643 --- scumm/vars.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scumm/vars.cpp b/scumm/vars.cpp index a253112ea5..15b5e18cdf 100644 --- a/scumm/vars.cpp +++ b/scumm/vars.cpp @@ -513,11 +513,12 @@ void ScummEngine::initScummVars() { VAR(VAR_NUM_CHARSETS) = _numCharsets - 1; VAR(VAR_NUM_GLOBAL_OBJS) = _numGlobalObjects - 1; } - if (_heversion >= 80) + if (_heversion >= 80) { VAR(78) = 1; VAR(VAR_WINDOWS_VERSION) = 40; VAR(VAR_NUM_ACTIVE_SOUND_CHANNELS) = (_heversion >= 90) ? 8 : 4; + } if (_heversion >= 90) { VAR(VAR_SCRIPT_CYCLE) = 1; VAR(VAR_NUM_SCRIPT_CYCLES) = 1; -- cgit v1.2.3