shithub: pokecrystal

Download patch

ref: 6c5b5d2b5771b3a4ddade9325c509bccb0c38c22
parent: 70cf2554a17b604c5e65fd86ebaeb5d206839baa
author: Bryan Bishop <[email protected]>
date: Thu Apr 26 10:26:16 EDT 2012

add two filler bytes to MapEventHeader asm output

--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -3257,7 +3257,9 @@
 
     def to_asm(self):
         xspacing = "" #was =spacing
-        output = ""
+        output = "; filler\n"
+        output += "db %d, %d\n\n" % (self.fillers[0], self.fillers[1])
+
         output += xspacing + "; warps\n"
         output += xspacing + "db %d"%(self.warp_count)
         if len(self.warps) > 0: