diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2018-05-11 00:33:32 -0500 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2018-05-11 00:33:32 -0500 |
commit | 4e2886db8179072badaad0a3ff131b95dd0a7e94 (patch) | |
tree | 6aa19ca84c1a296cd10def7b8475edc4a87974c8 /src/egg_hatch.c | |
parent | bc6000075547b00455a83f73fcd80e85a0972ac3 (diff) |
Use song constants
Diffstat (limited to 'src/egg_hatch.c')
-rw-r--r-- | src/egg_hatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egg_hatch.c b/src/egg_hatch.c index 08767c68f..8914d6ff3 100644 --- a/src/egg_hatch.c +++ b/src/egg_hatch.c @@ -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 } |