diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-22 15:13:32 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-22 15:13:32 -0500 |
commit | 2de204cdb5a24aeaae35cdb94aa61649874ddfce (patch) | |
tree | e685b31cea46ceba06bcd18d51c0f833359776f7 /extras | |
parent | c1cbb74ae85e29eb0554f0c9e81306ee6e15afcc (diff) |
remove duplicate incbins in asm output
Diffstat (limited to 'extras')
-rw-r--r-- | extras/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 383f01b85..4c2cb41be 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -4619,7 +4619,7 @@ class Asm: incbins[index] = new_object #insert these incbins into self.parts gindex = self.parts.index(object) - self.parts = self.parts[:gindex] + incbins + self.parts[gindex:] + self.parts = self.parts[:gindex] + incbins + self.parts[gindex+1:] found = True break #insert before the current object |