diff --git a/pygo.py b/pygo.py index 26ecf5d..a810e18 100755 --- a/pygo.py +++ b/pygo.py @@ -63,7 +63,7 @@ class GobanSquare: self.default_draw_code = 'dl' elif (self.x, self.y) == (19,19): self.default_draw_code = 'dr' - elif (self.x, self.y) in [(4,4), (4,16), (16,4), (16,16)]: + elif (self.x, self.y) in [(4,4), (4,10), (4,16), (10,4), (10,10), (10,16), (16,4), (16,10), (16,16)]: self.default_draw_code = 'h' elif self.x == 1: self.default_draw_code = 'u' @@ -121,7 +121,7 @@ def main(): # Build the dict of image objects img_res = build_img_res() - # Build the 361 board sprites + # Build the 361 board intersections goban = [] for i in range(19): goban.append([]) diff --git a/res/go_b.png b/res/go_b.png index f73d1a6..6d8585a 100644 Binary files a/res/go_b.png and b/res/go_b.png differ diff --git a/res/go_bT.png b/res/go_bT.png deleted file mode 100644 index 21be3c1..0000000 Binary files a/res/go_bT.png and /dev/null differ diff --git a/res/go_w.png b/res/go_w.png index 9a3e7b0..e926a09 100644 Binary files a/res/go_w.png and b/res/go_w.png differ diff --git a/res/go_wT.png b/res/go_wT.png deleted file mode 100644 index 2f710e7..0000000 Binary files a/res/go_wT.png and /dev/null differ