summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/crystal.py b/crystal.py
index 6502fa2..58f133b 100644
--- a/crystal.py
+++ b/crystal.py
@@ -1110,6 +1110,10 @@ class EncodedText:
end_address = offset + jump #we want the address before $57
text = parse_text_at2(offset, end_address-offset, debug=self.debug)
+
+ if jump == jump50:
+ text += "@"
+
self.text = text
self.last_address = self.end_address = end_address
@@ -1164,7 +1168,6 @@ class EncodedText:
commands = process_00_subcommands(address, address+count, debug=debug)
for (line_id, line) in commands.items():
output += parse_text_from_bytes(line, debug=debug, japanese=japanese)
- output += "\n"
texts.append([address, output])
return output