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 /tools/create_lure | |
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 'tools/create_lure')
-rw-r--r-- | tools/create_lure/process_actions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_lure/process_actions.cpp b/tools/create_lure/process_actions.cpp index 81db0de022..7ea45d8681 100644 --- a/tools/create_lure/process_actions.cpp +++ b/tools/create_lure/process_actions.cpp @@ -221,7 +221,7 @@ uint16 process_action_sequence_entry(int supportIndex, byte *data, uint16 remain for (int paramCtr = 0; paramCtr < numParams[actionNum]; ++paramCtr) params[paramCtr] = lureExe.readWord(); - switch(actionNum) { + switch (actionNum) { case NPC_SET_ROOM_AND_BLOCKED_OFFSET: case NPC_SET_SUPPORT_OFFSET: case NPC_SUPPORT_OFFSET_COND: |