aboutsummaryrefslogtreecommitdiff
path: root/scumm/nut_renderer.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-25 14:59:33 +0000
committerMax Horn2002-12-25 14:59:33 +0000
commit883cf3f60e9e35e616a445f2aae6c07bebb45d1f (patch)
tree447703c79869d7551121f43be597403d797c2168 /scumm/nut_renderer.cpp
parent004ea9f8eb7aa3cd79540c72b75986a9fa182cf6 (diff)
downloadscummvm-rg350-883cf3f60e9e35e616a445f2aae6c07bebb45d1f.tar.gz
scummvm-rg350-883cf3f60e9e35e616a445f2aae6c07bebb45d1f.tar.bz2
scummvm-rg350-883cf3f60e9e35e616a445f2aae6c07bebb45d1f.zip
use specified color
svn-id: r6133
Diffstat (limited to 'scumm/nut_renderer.cpp')
-rw-r--r--scumm/nut_renderer.cpp2
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);