From 2124e59609e4db1aa93c287e926244b3d1f7ac8f Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Sat, 12 Jul 2025 14:09:13 -0400 Subject: [PATCH] various fixes --- src/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index a7b6b5e..130610f 100644 --- a/src/main.py +++ b/src/main.py @@ -32,7 +32,7 @@ def main() -> None: pyg.display.set_caption('') window = pyg.display.set_mode((720, 480)) - #pyg.display.toggle_fullscreen() + pyg.display.toggle_fullscreen() reel = imgReel(IMG_DIR, window) @@ -40,7 +40,7 @@ def main() -> None: while running: reel.draw_next() - time.sleep(0.5) + time.sleep(10) for event in pyg.event.get(): if event.type == pyg.QUIT: @@ -58,6 +58,7 @@ class imgReel: self.images = [] for path in os.listdir(IMG_DIR): + ic(path) self.images.append(pyg.image.load(str(IMG_DIR) + path)) ic(self.images)