whitespace

svn-id: r11319
This commit is contained in:
Max Horn 2003-11-16 23:53:00 +00:00
parent b5d3add003
commit a15a065cba
2 changed files with 2 additions and 2 deletions

View file

@ -413,7 +413,7 @@ void CostumeRenderer::procC64(int actor) {
dst = v1.destptr;
}
}
} while(1);
} while (1);
}
#undef LINE

View file

@ -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;