diff options
| author | Max Horn | 2009-09-30 16:16:53 +0000 |
|---|---|---|
| committer | Max Horn | 2009-09-30 16:16:53 +0000 |
| commit | 8ba75fc522f16844524dd4d6f88c3851e2402969 (patch) | |
| tree | df25c20389e3e706d508f37914dedc73c6479f00 /engines/sky | |
| parent | 25dde91c7c6c7da52636e3daa34bd9eee5d9dcb9 (diff) | |
| download | scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.gz scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.bz2 scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.zip | |
Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)
svn-id: r44495
Diffstat (limited to 'engines/sky')
| -rw-r--r-- | engines/sky/logic.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sky/logic.cpp b/engines/sky/logic.cpp index 5924197d96..c67b7fe675 100644 --- a/engines/sky/logic.cpp +++ b/engines/sky/logic.cpp @@ -23,7 +23,6 @@ * */ - #include "common/endian.h" #include "common/rect.h" #include "common/events.h" @@ -1918,7 +1917,7 @@ bool Logic::fnStartMenu(uint32 firstObject, uint32 b, uint32 c) { uint32 menuLength = 0; for (i = firstObject; i < firstObject + ARRAYSIZE(_objectList); i++) { - if ( _scriptVariables[i] ) + if (_scriptVariables[i]) _objectList[menuLength++] = _scriptVariables[i]; } _scriptVariables[MENU_LENGTH] = menuLength; |
