aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2018-12-16 09:54:24 +0100
committerPaul Gilbert2018-12-17 21:04:28 -0800
commita163fee23bef7fbb78e4ca018333a44c6869ea76 (patch)
tree5423d0b7a92295c02acaa650fb065d09be41e93e /engines/glk/frotz/processor.h
parent9c46de5b8f8faf6d4b5cd7705dfd4b92906365b2 (diff)
downloadscummvm-rg350-a163fee23bef7fbb78e4ca018333a44c6869ea76.tar.gz
scummvm-rg350-a163fee23bef7fbb78e4ca018333a44c6869ea76.tar.bz2
scummvm-rg350-a163fee23bef7fbb78e4ca018333a44c6869ea76.zip
GLK: FROTZ: Map runic characters to Unicode
This does not actually work, because we currently do not have any font that supports the Unicode Runic block. But there are free fonts that do (Junicode, for instance), so it may still be possible to do this.
Diffstat (limited to 'engines/glk/frotz/processor.h')
-rw-r--r--engines/glk/frotz/processor.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/glk/frotz/processor.h b/engines/glk/frotz/processor.h
index 9bb104c7c4..5b9926bbf4 100644
--- a/engines/glk/frotz/processor.h
+++ b/engines/glk/frotz/processor.h
@@ -327,6 +327,11 @@ protected:
void screen_mssg_off();
/**
+ * Map a runic character to its Unicode equivalent, if there is one
+ */
+ uint32 zchar_to_unicode_rune(zchar c);
+
+ /**
* Display a single character on the screen.
*/
void screen_char(zchar c);