From b13712aabf3912c0cba13dd89616e74872da8b44 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 6 Feb 2022 15:39:07 -0600 Subject: [PATCH] Enabled new font + lowercase hint text updates --- Text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Text.py b/Text.py index 76d94586..e63926f3 100644 --- a/Text.py +++ b/Text.py @@ -627,7 +627,7 @@ class MultiByteCoreTextMapper(object): } @classmethod - def convert(cls, text, pause=True, wrap=14): + def convert(cls, text, pause=True, wrap=19): #text = text.upper() lines = text.split('\n') outbuf = bytearray() @@ -736,7 +736,7 @@ class CompressedTextMapper(object): } @classmethod - def convert(cls, text, pause=True, max_bytes_expanded=0x800, wrap=14): + def convert(cls, text, pause=True, max_bytes_expanded=0x800, wrap=19): inbuf = MultiByteCoreTextMapper.convert(text, pause, wrap) # Links name will need 8 bytes in the target buffer