From f412328181baaac3ec6726de3bd9b914731cc551 Mon Sep 17 00:00:00 2001 From: Matthew Stewart Date: Fri, 27 Jul 2018 01:59:01 -0400 Subject: STARTREK: Implement text input boxes Needed for SINS mission with the keypads --- engines/startrek/font.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/startrek/font.h') diff --git a/engines/startrek/font.h b/engines/startrek/font.h index 1353acc2e5..184d5abcd5 100644 --- a/engines/startrek/font.h +++ b/engines/startrek/font.h @@ -18,9 +18,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * $URL: https://scummvm-startrek.googlecode.com/svn/trunk/font.h $ - * $Id: font.h 2 2009-09-12 20:13:40Z clone2727 $ - * */ #ifndef STARTREK_FONT_H @@ -38,6 +35,7 @@ public: ~Font(); byte *getCharData(int i); + bool isDisplayableCharacter(char c); private: StarTrekEngine *_vm; @@ -45,6 +43,8 @@ private: struct Character { byte data[0x40]; } *_characters; + + const static byte _fontProperties[256]; }; -- cgit v1.2.3