shithub: pokecrystal

Download patch

ref: 1663472cf61e999168c2ba2a4b5f55de56c95c91
parent: 0c778f2930d91dbfde77b75c0147240c713a5085
author: Bryan Bishop <[email protected]>
date: Wed May 23 13:39:30 EDT 2012

quick fix for PokedexText

--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -2324,6 +2324,10 @@
     def parse(self):
         offset = self.address
 
+        # the code below assumes we're jumping past a $0 byte
+        if use_zero == False:
+            offset = offset - 1
+
         # read until $50, $57 or $58 (not sure about $58...)
         jump57 = how_many_until(chr(0x57), offset)
         jump50 = how_many_until(chr(0x50), offset)