From 16eb0db3ee86665e7950deab19a48a1096a7b62f Mon Sep 17 00:00:00 2001 From: Nicholas Hope Date: Sun, 10 Apr 2022 11:54:16 -0400 Subject: [PATCH] created typo in app title --- snake/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snake/main.py b/snake/main.py index 86eb8d3..66fef40 100644 --- a/snake/main.py +++ b/snake/main.py @@ -1,6 +1,6 @@ """Snake!""" -___title___ = "Snake" +___title___ = "Snork" ___license___ = "MIT" ___categories___ = ["Games"] ___dependencies___ = ["dialogs", "app", "ugfx_helper", "sleep", "buttons"] @@ -12,10 +12,10 @@ ugfx_helper.init() def one_round(): grid_size = 8; - body_colour = ugfx.RED + body_colour = ugfx.BLUE back_colour = 0; food_colour = ugfx.YELLOW - wall_colour = ugfx.BLUE + wall_colour = ugfx.RED score = 0; edge_x = math.floor(ugfx.width()/grid_size)-2; edge_y = math.floor(ugfx.height()/grid_size)-2;