diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:46:46 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:46:46 -0500 |
commit | d37f9869712ded6feed36537932c75255a3665ae (patch) | |
tree | 09a540d120599b001839f47cf05857ea7873a447 | |
parent | e14ee0838d958dcd3a19f4f097a47d0f967ad1f0 (diff) |
revert to dbw in MapScriptHeader.to_asm()
-rw-r--r-- | extras/crystal.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 26b1d5dc4..c69c31cbe 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3468,8 +3468,7 @@ class MapScriptHeader: output += "db %d"%self.callback_count if len(self.callbacks) > 0: output += "\n\n; callbacks\n\n" - #not so sure about this next one - output += "\n\n".join(["db "+str(p["hook"].byte)+"\ndw "+p["callback"].to_asm() for p in self.callbacks]) + output += "\n\n".join(["dbw "+str(p["hook"].byte)+", "+p["callback"].to_asm() for p in self.callbacks]) return output all_map_script_headers = [] |