From f1614a4e4c8eda322d160bc3ceae63c5825c7019 Mon Sep 17 00:00:00 2001 From: caitsith2 Date: Sun, 7 Jun 2020 11:52:03 -0700 Subject: [PATCH] Convert _ to space in player names in rom. (_ shows up as ?) --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 5241f695..b957fc19 100644 --- a/Rom.py +++ b/Rom.py @@ -1328,7 +1328,7 @@ def hud_format_text(text): output += bytes([0x77 + ord(char) - ord('0'), 0x29]) elif char == '9': output += b'\x4b\x29' - elif char == ' ': + elif char == ' ' or char == '_': output += b'\x7f\x00' else: output += b'\x2a\x29'