diff options
Diffstat (limited to 'engines/gob/draw.cpp')
| -rw-r--r-- | engines/gob/draw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/draw.cpp b/engines/gob/draw.cpp index 19a10947b3..78f25a19b8 100644 --- a/engines/gob/draw.cpp +++ b/engines/gob/draw.cpp @@ -667,7 +667,7 @@ void Draw::drawSprite(int16 source, Video::SurfaceDesc * dest, int16 left, void Draw::drawString(char *str, int16 x, int16 y, int16 color1, int16 color2, int16 transp, Video::SurfaceDesc *dest, Video::FontDesc *font) { - while(*str != '\0') { + while (*str != '\0') { _vm->_video->drawLetter(*str, x, y, font, transp, color1, color2, dest); if (font->extraData == 0) x += font->itemWidth; |
