Fix RAM tile location in icebox.py

This commit is contained in:
David Shah 2017-10-21 18:30:14 +01:00
parent 29593ed2cb
commit ec419b4206
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class iceconfig:
for x in range(1, self.max_x):
for y in range(1, self.max_y):
if x in (7, 20):
if x in (6, 19):
if y % 2 == 1:
self.ramb_tiles[(x, y)] = ["0" * 42 for i in range(16)]
else: