From 8159efd43714e9775fadf006893c8056d5605d25 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 17 Aug 2022 07:36:10 +0200 Subject: Fixed playfield symetry --- src/brothers.zig | 4 ++-- src/playfield.zig | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/brothers.zig b/src/brothers.zig index 1b34a6b..7aaf7de 100644 --- a/src/brothers.zig +++ b/src/brothers.zig @@ -8,8 +8,8 @@ pub const Side = enum(u1) { const startingX = [2]f64{ 15, 60 }; const colors = [2]spoon.Attribute.Colour{ .blue, .red }; -const leftLimit = [2]f64{ 1, 40 }; -const rightLimit = [2]f64{ 33, 74 }; // (38, 79) minus a brother's width +const leftLimit = [2]f64{ 1, 41 }; +const rightLimit = [2]f64{ 34, 74 }; // (38, 79) minus a brother's width pub const Brother = struct { side: Side, diff --git a/src/playfield.zig b/src/playfield.zig index 3878323..757ec60 100644 --- a/src/playfield.zig +++ b/src/playfield.zig @@ -12,7 +12,7 @@ pub fn draw(rc: *spoon.Term.RenderContext) !void { const field = \\████████████████████████████████████████████████████████████████████████████████ - \\█ ██ █ + \\█ ██ █ \\████████████████████████████████████████████████████████████████████████████████ \\█ █ \\█ █ @@ -24,15 +24,15 @@ const field = \\█ █ \\█ █ \\█ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ - \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ + \\█ ██ █ \\████████████████████████████████████████████████████████████████████████████████ ; -- cgit v1.2.3