Skip to content

Commit

Permalink
Dynamic Multichoice no longer plays sound on init (#4480)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sneed69 authored May 9, 2024
1 parent 432c4f2 commit b3a4553
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/script_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ void MultichoiceDynamic_DestroyStack(void)
static void MultichoiceDynamic_MoveCursor(s32 itemIndex, bool8 onInit, struct ListMenu *list)
{
u8 taskId;
PlaySE(SE_SELECT);
if (!onInit)
PlaySE(SE_SELECT);
taskId = FindTaskIdByFunc(Task_HandleScrollingMultichoiceInput);
if (taskId != TASK_NONE)
{
Expand Down

0 comments on commit b3a4553

Please sign in to comment.