aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-11-16 23:53:00 +0000
committerMax Horn2003-11-16 23:53:00 +0000
commita15a065cba1fcb421efa9983a076e6e2c6df6655 (patch)
tree1f345a2205edc3e82405ca55795133cc4304daca /scumm
parentb5d3add003b8aa8abac1a9a3c1c06dd8690d3195 (diff)
downloadscummvm-rg350-a15a065cba1fcb421efa9983a076e6e2c6df6655.tar.gz
scummvm-rg350-a15a065cba1fcb421efa9983a076e6e2c6df6655.tar.bz2
scummvm-rg350-a15a065cba1fcb421efa9983a076e6e2c6df6655.zip
whitespace
svn-id: r11319
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp2
-rw-r--r--scumm/string.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index e303dadd5d..44a0f4df73 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -413,7 +413,7 @@ void CostumeRenderer::procC64(int actor) {
dst = v1.destptr;
}
}
- } while(1);
+ } while (1);
}
#undef LINE
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 001fb47274..ec89b5e6fd 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -307,7 +307,7 @@ void ScummEngine::CHARSET_1() {
_charset->_left = _charset->_nextLeft;
_charset->_top = _charset->_nextTop;
if (c & 0x80 && _CJKMode)
- if(_language == 6 && ((c > 0x84 && c < 0x88) || (c > 0x9f && c < 0xe0) || (c > 0xea && c <= 0xff)))
+ if (_language == 6 && ((c > 0x84 && c < 0x88) || (c > 0x9f && c < 0xe0) || (c > 0xea && c <= 0xff)))
c = 0x20; //not in S-JIS
else
c += *buffer++ * 256;