Merge pull request #146 from KScl/missing_ellipsis

Fix missing ellipsis in credits text
This commit is contained in:
Fabian Dill 2020-10-28 07:51:17 +01:00 committed by GitHub
commit 7f4978c4b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1230,7 +1230,8 @@ class GoldCreditMapper(CharTextMapper):
class GreenCreditMapper(CharTextMapper):
char_map = {' ': 0x9F,
'·': 0x52}
'·': 0x52,
'.': 0x52}
alpha_offset = -0x29
class RedCreditMapper(CharTextMapper):