From de7e3c529a22af5ba62255b9191c2c9d5acb172e Mon Sep 17 00:00:00 2001 From: milanjaeckel Date: Sun, 10 May 2026 12:43:36 +0200 Subject: [PATCH] small QOL changes --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 09632f9..adc452e 100644 --- a/main.py +++ b/main.py @@ -38,10 +38,10 @@ while running: #open window #chess game while posY < 800: posX = 0 - if s1 != True: + if not s1: posX = posX + 100 while posX <= 800: - pg.draw.rect(screen, color, (posX, posY, sizeH, sizeW)) + pg.draw.rect(screen, color, (posX, posY, sizeW, sizeH)) posX = posX + 200 posY = posY + 100 s1 = not s1