diff options
| author | Pepe20129 <72659707+Pepe20129@users.noreply.github.com> | 2025-08-13 04:56:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 19:56:52 -0700 |
| commit | 3e39a940833eb0d984fe4bb361a8856e8a2d1c1e (patch) | |
| tree | 45be969e27d9de897c3dc90973be1a440beb653b /soh/src/code | |
| parent | 6d4c6f8ea649d1e4857a275994e854c8a983dab8 (diff) | |
Turn song text into a notification (#5712)
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/audio_load.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/soh/src/code/audio_load.c b/soh/src/code/audio_load.c index 81f67f9c0..52efa4016 100644 --- a/soh/src/code/audio_load.c +++ b/soh/src/code/audio_load.c @@ -640,10 +640,8 @@ s32 AudioLoad_SyncInitSeqPlayerInternal(s32 playerIdx, s32 seqId, s32 arg2) { if (gPlayState != NULL) { previousSceneNum = gPlayState->sceneNum; } - const char* sequenceName = AudioCollection_GetSequenceName(seqId); - if (sequenceName != NULL) { - Overlay_DisplayText_Seconds(CVarGetInteger(CVAR_AUDIO("SeqNameOverlayDuration"), 5), sequenceName); - } + + AudioCollection_EmitSongNameNotification(seqId); } } |
