Fix missing ellipsis in credits text
This commit is contained in:
parent
5c403086d9
commit
b83b98b19c
3
Text.py
3
Text.py
|
@ -1230,7 +1230,8 @@ class GoldCreditMapper(CharTextMapper):
|
||||||
|
|
||||||
class GreenCreditMapper(CharTextMapper):
|
class GreenCreditMapper(CharTextMapper):
|
||||||
char_map = {' ': 0x9F,
|
char_map = {' ': 0x9F,
|
||||||
'·': 0x52}
|
'·': 0x52,
|
||||||
|
'.': 0x52}
|
||||||
alpha_offset = -0x29
|
alpha_offset = -0x29
|
||||||
|
|
||||||
class RedCreditMapper(CharTextMapper):
|
class RedCreditMapper(CharTextMapper):
|
||||||
|
|
Loading…
Reference in New Issue