From 712b7a57ac4225b4b9eebb144d636f7d85c0bcae Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Thu, 26 Apr 2012 14:26:16 -0500 Subject: add two filler bytes to MapEventHeader asm output original-commit-id: 6c5b5d2b5771b3a4ddade9325c509bccb0c38c22 --- crystal.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crystal.py') diff --git a/crystal.py b/crystal.py index 56d3d08..b7c5943 100644 --- a/crystal.py +++ b/crystal.py @@ -3257,7 +3257,9 @@ class MapEventHeader: 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: -- cgit v1.2.3