retro-muri.py: increase memory size for initial image
FossilOrigin-Name: dee89c249051cd8641205c90fbc89f205b62ea720496b873fdc1fb3e0043c456
This commit is contained in:
parent
0102571278
commit
9f5a851279
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ def pass2():
|
||||||
def save(filename):
|
def save(filename):
|
||||||
with open(filename, "wb") as file:
|
with open(filename, "wb") as file:
|
||||||
j = 0
|
j = 0
|
||||||
while j < 1024:
|
while j < 1024 * 8:
|
||||||
file.write(struct.pack("i", image[j]))
|
file.write(struct.pack("i", image[j]))
|
||||||
j = j + 1
|
j = j + 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue