aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui32/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/gui32/font.h')
-rw-r--r--engines/sci/gui32/font.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sci/gui32/font.h b/engines/sci/gui32/font.h
index b24d50fb05..d7b92db029 100644
--- a/engines/sci/gui32/font.h
+++ b/engines/sci/gui32/font.h
@@ -78,9 +78,8 @@ struct gfx_bitmap_font_t {
* SCI0, SCI01 and SCI1 all use the same font format.
*/
enum fontFlags {
- kFontCountWhitespace = 1 << 0, ///< In SQ3, whitespace is included in text size
- kFontNoNewlines = 1 << 1, ///< Don't treat newline characters
- kFontIgnoreLF = 1 << 2 ///< Interpret CR LF sequences as a single newline, rather than two
+ kFontNoNewlines = 1 << 0, ///< Don't treat newline characters
+ kFontIgnoreLF = 1 << 1 ///< Interpret CR LF sequences as a single newline, rather than two
};
/**