aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/font.h')
-rw-r--r--engines/sci/graphics/font.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/sci/graphics/font.h b/engines/sci/graphics/font.h
index 58b2ba4813..451261f315 100644
--- a/engines/sci/graphics/font.h
+++ b/engines/sci/graphics/font.h
@@ -71,9 +71,11 @@ private:
byte *_resourceData;
struct Charinfo {
- byte w, h;
+ byte width;
+ byte height;
int16 offset;
};
+
byte _fontHeight;
uint16 _numChars;
Charinfo *_chars;