diff options
author | Paul Gilbert | 2018-11-09 21:13:38 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | df8dec156efa70bb5bda1f6ef6d255c22688d952 (patch) | |
tree | e3e7a23762b4528b0c38428984de9af89f05af8c /engines/gargoyle/streams.h | |
parent | c524c5859e7b92b189a6ee0475f0856a71441c3a (diff) | |
download | scummvm-rg350-df8dec156efa70bb5bda1f6ef6d255c22688d952.tar.gz scummvm-rg350-df8dec156efa70bb5bda1f6ef6d255c22688d952.tar.bz2 scummvm-rg350-df8dec156efa70bb5bda1f6ef6d255c22688d952.zip |
GLK: Add garglk_set_zcolors methods
Diffstat (limited to 'engines/gargoyle/streams.h')
-rw-r--r-- | engines/gargoyle/streams.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/gargoyle/streams.h b/engines/gargoyle/streams.h index 02e2f3b7e6..ac2503220f 100644 --- a/engines/gargoyle/streams.h +++ b/engines/gargoyle/streams.h @@ -257,6 +257,11 @@ public: * Set a hyperlink */ virtual void setHyperlink(glui32 linkVal) {} + + /** + * Set the style colors + */ + virtual void setZColors(glui32 fg, glui32 bg); }; typedef Stream *strid_t; @@ -314,6 +319,11 @@ public: * Set a hyperlink */ virtual void setHyperlink(glui32 linkVal) override; + + /** + * Set the style colors + */ + virtual void setZColors(glui32 fg, glui32 bg) override; }; /** |