From 029a5a4cdab75021e53204b7be92457ce1f8bcce Mon Sep 17 00:00:00 2001 From: GearsProgress Date: Wed, 11 Mar 2026 16:39:58 -0400 Subject: [PATCH] Disabling sound_init to prevent crash --- source/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index b8d5bf9..9a7c14d 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -83,7 +83,8 @@ void initialization_script(void) // Sound bank init irq_init(NULL); irq_enable(II_VBLANK); - sound_init(); + // This currently crashes when you try to transfer a Pokemon: + //sound_init(); // Graphics init oam_init(obj_buffer, 128);