From 6b5eab62f6146beda92b686f10797b8e28a2ffe3 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 24 Dec 2017 09:44:15 -0500 Subject: XEEN: Fix animated text cursor partialy overlapping prior char --- engines/xeen/window.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'engines/xeen/window.h') 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 -- cgit v1.2.3