aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/screen_manager.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-04-24 22:22:12 -0400
committerPaul Gilbert2016-07-10 16:12:01 -0400
commit36faf0890fec6bab90531ade42c0eb924b31b64a (patch)
treec63a8d8ceb9da3827d4edaf49eaf36e7a93b96d9 /engines/titanic/support/screen_manager.h
parentc75de59a28c94e364a38af39057af720ba8465d4 (diff)
downloadscummvm-rg350-36faf0890fec6bab90531ade42c0eb924b31b64a.tar.gz
scummvm-rg350-36faf0890fec6bab90531ade42c0eb924b31b64a.tar.bz2
scummvm-rg350-36faf0890fec6bab90531ade42c0eb924b31b64a.zip
TITANIC: Minor work towards text display
Diffstat (limited to 'engines/titanic/support/screen_manager.h')
-rw-r--r--engines/titanic/support/screen_manager.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/engines/titanic/support/screen_manager.h b/engines/titanic/support/screen_manager.h
index baba662564..b1e949ad58 100644
--- a/engines/titanic/support/screen_manager.h
+++ b/engines/titanic/support/screen_manager.h
@@ -108,7 +108,11 @@ public:
virtual void proc12() = 0;
virtual void proc13() = 0;
virtual void proc14() = 0;
- virtual void proc15() = 0;
+
+ /**
+ * Set the font color
+ */
+ virtual void setFontColor(byte r, byte g, byte b) = 0;
/**
* Get the text area a string will fit into
@@ -164,7 +168,7 @@ public:
/**
* Set the current font number
*/
- void setFontNumber(int fontNumber) { _fontNumber = fontNumber; }
+ int setFontNumber(int fontNumber);
};
class OSScreenManager: CScreenManager {
@@ -224,7 +228,11 @@ public:
virtual void proc12();
virtual void proc13();
virtual void proc14();
- virtual void proc15();
+
+ /**
+ * Set the font color
+ */
+ virtual void setFontColor(byte r, byte g, byte b);
/**
* Get the text area a string will fit into