1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -07:00
This commit is contained in:
Connor Olding 2015-03-01 08:01:44 -08:00
parent a2fe369827
commit 6bcf6de420

View File

@ -141,12 +141,8 @@ def z_read_file(path, fn=None):
def create_rom(d):
walker = os.walk(d)
if not walker:
return
root, _, files = next(walker)
del walker
#files = [os.path.join(root, fn) for fn in files]
rom_size = 64*1024*1024
with open(d+'.z64', 'w+b') as f: