From b83b98b19cd722855d8c28e2f0e52a7de235de4e Mon Sep 17 00:00:00 2001 From: Kaito Sinclaire Date: Tue, 27 Oct 2020 15:26:46 -0700 Subject: [PATCH] Fix missing ellipsis in credits text --- Text.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Text.py b/Text.py index feaf2be8..ba665065 100644 --- a/Text.py +++ b/Text.py @@ -1230,7 +1230,8 @@ class GoldCreditMapper(CharTextMapper): class GreenCreditMapper(CharTextMapper): char_map = {' ': 0x9F, - '·': 0x52} + '·': 0x52, + '.': 0x52} alpha_offset = -0x29 class RedCreditMapper(CharTextMapper):