retro-muri.py: increase memory size for initial image

FossilOrigin-Name: dee89c249051cd8641205c90fbc89f205b62ea720496b873fdc1fb3e0043c456
This commit is contained in:
crc 2024-10-30 12:45:06 +00:00
parent 0102571278
commit 9f5a851279

View file

@ -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