From ec419b42067780c38bd6f38cc6f0706d15b87d1e Mon Sep 17 00:00:00 2001 From: David Shah Date: Sat, 21 Oct 2017 18:30:14 +0100 Subject: Fix RAM tile location in icebox.py --- icebox/icebox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'icebox/icebox.py') diff --git a/icebox/icebox.py b/icebox/icebox.py index 26e6bd4..bfd0381 100644 --- a/icebox/icebox.py +++ b/icebox/icebox.py @@ -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: -- cgit v1.2.3