diff options
| author | Max Horn | 2005-05-08 21:49:52 +0000 |
|---|---|---|
| committer | Max Horn | 2005-05-08 21:49:52 +0000 |
| commit | cca744f69a9eb079a314c8f39af1faa4e7b1e5a6 (patch) | |
| tree | 1eb00deac3941d844ce98abc10eb4339955ef61d /sky | |
| parent | 013e30eb389c40eb579cc8e3f05b8e8da80925ca (diff) | |
| download | scummvm-rg350-cca744f69a9eb079a314c8f39af1faa4e7b1e5a6.tar.gz scummvm-rg350-cca744f69a9eb079a314c8f39af1faa4e7b1e5a6.tar.bz2 scummvm-rg350-cca744f69a9eb079a314c8f39af1faa4e7b1e5a6.zip | |
Comply to our coding conventions
svn-id: r17975
Diffstat (limited to 'sky')
| -rw-r--r-- | sky/screen.cpp | 2 | ||||
| -rw-r--r-- | sky/text.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sky/screen.cpp b/sky/screen.cpp index c16c8a215c..ab2f3d66b5 100644 --- a/sky/screen.cpp +++ b/sky/screen.cpp @@ -605,7 +605,7 @@ void Screen::doSprites(uint8 layer) { drawListNum++; drawList = (uint16 *)_skyCompact->fetchCpt(idNum); - while(drawList[0]) { + while (drawList[0]) { // new_draw_list: while ((drawList[0] != 0) && (drawList[0] != 0xFFFF)) { // back_loop: diff --git a/sky/text.cpp b/sky/text.cpp index 9c6fc68da3..6f1019eb3f 100644 --- a/sky/text.cpp +++ b/sky/text.cpp @@ -328,7 +328,7 @@ void Text::getText(uint32 textNr) { //load text #"textNr" into textBuffer do { textChar = getTextChar(); *dest++ = textChar; - } while(textChar); + } while (textChar); } void Text::fnPointerText(uint32 pointedId, uint16 mouseX, uint16 mouseY) { |
