From b87c36273eea1b8c44b285c5e9ac1971119be28b Mon Sep 17 00:00:00 2001 From: Persephone Bubblegum-Holiday Date: Wed, 6 Aug 2025 22:02:58 -0700 Subject: [PATCH] smallest fix ever --- Scripts/InGameMenu.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/InGameMenu.gd b/Scripts/InGameMenu.gd index 4ab80a1..63d7982 100644 --- a/Scripts/InGameMenu.gd +++ b/Scripts/InGameMenu.gd @@ -208,8 +208,8 @@ func _on_play_button_pressed() -> void: func _physics_process(_delta: float) -> void: if (playing): - if (index > loaded_frames.size()): - _on_stop_button_pressed() + if (index >= loaded_frames.size()): + _on_stop_button_pressed() return var j = 0 for i in stage["bit_mapping"]: