diff options
-rw-r--r-- | scumm/nut_renderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/nut_renderer.cpp b/scumm/nut_renderer.cpp index 1f3f6c56da..b1e0187ed6 100644 --- a/scumm/nut_renderer.cpp +++ b/scumm/nut_renderer.cpp @@ -191,7 +191,7 @@ void NutRenderer::drawString(char *string, int32 x, int32 y, byte color, int32 m return; } - drawChar(string[l], x, y, 0); + drawChar(string[l], x, y, color); x += getCharWidth(string[l]); l++; } while (string[l] != 0); |