aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/window.h
diff options
context:
space:
mode:
authorPaul Gilbert2017-12-24 09:44:15 -0500
committerPaul Gilbert2017-12-24 23:53:31 -0500
commit6b5eab62f6146beda92b686f10797b8e28a2ffe3 (patch)
treefd5456cdc4c15cbf408f39eb73c2c23b573c54cc /engines/xeen/window.h
parentee1da05d0b7ade9e1f0e3062ca6e336a1dd80d59 (diff)
downloadscummvm-rg350-6b5eab62f6146beda92b686f10797b8e28a2ffe3.tar.gz
scummvm-rg350-6b5eab62f6146beda92b686f10797b8e28a2ffe3.tar.bz2
scummvm-rg350-6b5eab62f6146beda92b686f10797b8e28a2ffe3.zip
XEEN: Fix animated text cursor partialy overlapping prior char
Diffstat (limited to 'engines/xeen/window.h')
-rw-r--r--engines/xeen/window.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/xeen/window.h b/engines/xeen/window.h
index 2389065300..b63943f919 100644
--- a/engines/xeen/window.h
+++ b/engines/xeen/window.h
@@ -148,6 +148,14 @@ public:
const char *writeString(const Common::String &s) {
return FontSurface::writeString(s, _innerBounds);
}
+
+ /**
+ * Write a charcter to the window
+ * @param c Character
+ */
+ void writeCharacter(char c) {
+ FontSurface::writeCharacter(c, _innerBounds);
+ }
};
} // End of namespace Xeen