diff options
author | Sven Hesse | 2007-12-26 01:19:05 +0000 |
---|---|---|
committer | Sven Hesse | 2007-12-26 01:19:05 +0000 |
commit | 58959568bd250b1f890c739fb905eb99603578b5 (patch) | |
tree | aea519e565004e8e8328eac96b349a60b0ce475e | |
parent | 956b69b655026c6c84bd4f3ab5b9b97dc91fea8f (diff) | |
download | scummvm-rg350-58959568bd250b1f890c739fb905eb99603578b5.tar.gz scummvm-rg350-58959568bd250b1f890c739fb905eb99603578b5.tar.bz2 scummvm-rg350-58959568bd250b1f890c739fb905eb99603578b5.zip |
Style :P
svn-id: r29999
-rw-r--r-- | engines/gob/inter_v3.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/inter_v3.cpp b/engines/gob/inter_v3.cpp index e80181ff4a..7de1b17ec2 100644 --- a/engines/gob/inter_v3.cpp +++ b/engines/gob/inter_v3.cpp @@ -739,7 +739,7 @@ bool Inter_v3::o3_getTotTextItemPart(OpFuncParams ¶ms) { totData += 2; while (*totData != 1) { - switch(*totData) { + switch (*totData) { case 2: case 5: totData++; @@ -785,7 +785,7 @@ bool Inter_v3::o3_getTotTextItemPart(OpFuncParams ¶ms) { return false; } - switch(*totData) { + switch (*totData) { case 2: case 5: totData += 5; @@ -820,7 +820,7 @@ bool Inter_v3::o3_getTotTextItemPart(OpFuncParams ¶ms) { end = false; while (!end) { - switch(*totData) { + switch (*totData) { case 2: case 5: if (ABS(offY - READ_LE_UINT16(totData + 3)) > 1) |