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 | 3270d8a5f90394eac04dffaadd14a23b5ad951c9 (patch) | |
tree | 2e353647170b83c7ec6a38016ca39f8b39d910f9 /crystal.py | |
parent | 9cffdb17f782f0923241e6508b02c64c8edaf86b (diff) |
remove duplicate incbins in asm output
original-commit-id: 2de204cdb5a24aeaae35cdb94aa61649874ddfce
Diffstat (limited to 'crystal.py')
-rw-r--r-- | crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |