aboutsummaryrefslogtreecommitdiff
path: root/engines/startrek/font.h
diff options
context:
space:
mode:
authorMatthew Stewart2018-07-27 01:59:01 -0400
committerEugene Sandulenko2018-08-09 08:37:30 +0200
commitf412328181baaac3ec6726de3bd9b914731cc551 (patch)
tree654036cd532542e22a2ce2be7741d73a411bab9d /engines/startrek/font.h
parentb2213cac9b2766b62e29368394837fbe261233d3 (diff)
downloadscummvm-rg350-f412328181baaac3ec6726de3bd9b914731cc551.tar.gz
scummvm-rg350-f412328181baaac3ec6726de3bd9b914731cc551.tar.bz2
scummvm-rg350-f412328181baaac3ec6726de3bd9b914731cc551.zip
STARTREK: Implement text input boxes
Needed for SINS mission with the keypads
Diffstat (limited to 'engines/startrek/font.h')
-rw-r--r--engines/startrek/font.h6
1 files changed, 3 insertions, 3 deletions
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];
};