diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2026-02-25 00:06:47 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2026-02-25 00:06:47 -0300 |
| commit | 9d8172f45caa4ae9120ea1172fa398b5e07544f1 (patch) | |
| tree | 68d6c0565f195e1797502be9df62859c3b6b879a | |
| parent | 28b43e1b6007fb76fbec21a1e6567356b88861a7 (diff) | |
Disable Title AUDIO_SPEC set when scene changes for now.
| -rw-r--r-- | src/engine/fox_load.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/fox_load.c b/src/engine/fox_load.c index 9baf5d48..13fe034f 100644 --- a/src/engine/fox_load.c +++ b/src/engine/fox_load.c @@ -109,7 +109,8 @@ u8 Load_SceneSetup(u8 sceneId, u8 sceneSetup) { case SCENE_TITLE: changeScene = Load_SceneFiles(&sOvlmenu_Title[sceneSetup]); if (changeScene == true) { - AUDIO_SET_SPEC(SFXCHAN_0, AUDIOSPEC_22); + // Causes audio hang for a few seconds when going from the menu to the title + // AUDIO_SET_SPEC(SFXCHAN_0, AUDIOSPEC_22); } break; case SCENE_MENU: |
