Convert _ to space in player names in rom. (_ shows up as ?)

This commit is contained in:
caitsith2 2020-06-07 11:52:03 -07:00
parent 705266da9b
commit f1614a4e4c
1 changed files with 1 additions and 1 deletions

2
Rom.py
View File

@ -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'