From cca744f69a9eb079a314c8f39af1faa4e7b1e5a6 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 8 May 2005 21:49:52 +0000 Subject: Comply to our coding conventions svn-id: r17975 --- kyra/script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kyra/script.cpp') diff --git a/kyra/script.cpp b/kyra/script.cpp index 755ca58925..9176f4a4f4 100644 --- a/kyra/script.cpp +++ b/kyra/script.cpp @@ -504,12 +504,12 @@ uint32 VMContext::contScript(void) { uint32 scriptStateAtStart = _scriptState; // runs the script - while(true) { + while (true) { if ((uint32)_instructionPos > _chunks[kData]._size) { debug("_instructionPos( = %d) > _chunks[kData]._size( = %d)", _instructionPos, _chunks[kData]._size); _error = true; break; - } else if(_instructionPos >= _nextScriptPos) { + } else if (_instructionPos >= _nextScriptPos) { _scriptState = kScriptStopped; break; } -- cgit v1.2.3