aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/teenagent/font.h')
-rw-r--r--engines/teenagent/font.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/teenagent/font.h b/engines/teenagent/font.h
index cd2287a7b7..6961c21676 100644
--- a/engines/teenagent/font.h
+++ b/engines/teenagent/font.h
@@ -31,13 +31,13 @@ namespace TeenAgent {
class Font {
public:
- byte grid_color, color, shadow_color;
+ byte grid_color, shadow_color;
byte height, width_pack;
Font();
void load(int id);
- uint render(Graphics::Surface *surface, int x, int y, const Common::String &str, bool grid = false);
- uint render(Graphics::Surface *surface, int x, int y, char c);
+ uint render(Graphics::Surface *surface, int x, int y, const Common::String &str, byte color, bool grid = false);
+ uint render(Graphics::Surface *surface, int x, int y, char c, byte color);
static void grid(Graphics::Surface *surface, int x, int y, int w, int h, byte color);
~Font();