aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/font.h
diff options
context:
space:
mode:
authorVladimir Menshakov2009-11-08 19:11:57 +0000
committerVladimir Menshakov2009-11-08 19:11:57 +0000
commitc1b1d42b8740f31cc0dbb1a11e934d6db9de08b5 (patch)
treebd31e0aaac8a432e04a4987e350079aff948d2f4 /engines/teenagent/font.h
parent778e1830bb10256b87d1a029326c23462a69b9f7 (diff)
downloadscummvm-rg350-c1b1d42b8740f31cc0dbb1a11e934d6db9de08b5.tar.gz
scummvm-rg350-c1b1d42b8740f31cc0dbb1a11e934d6db9de08b5.tar.bz2
scummvm-rg350-c1b1d42b8740f31cc0dbb1a11e934d6db9de08b5.zip
removed font::color, added debugger console with enable_object/disable_object commands.
svn-id: r45755
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();