Use song constants

This commit is contained in:
Diegoisawesome
2018-05-11 00:33:32 -05:00
parent bc60000755
commit 4e2886db81
5 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -574,10 +574,10 @@ static void Task_EggHatchPlayBGM(u8 taskID)
play_some_sound();
}
if (gTasks[taskID].data[0] == 1)
PlayBGM(376);
PlayBGM(MUS_ME_SHINKA);
if (gTasks[taskID].data[0] > 60)
{
PlayBGM(377);
PlayBGM(MUS_SHINKA);
DestroyTask(taskID);
// UB: task is destroyed, yet the value is incremented
}