diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
commit | 038abf80ba30a277420e0381312c0cfc2296811e (patch) | |
tree | ab951530e74209c0da170bc74ddd8b5a456bab9a /src/item_use.c | |
parent | d7ec1d234b260df869213e195055dd75bcbe5cf3 (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/item_use.c')
-rw-r--r-- | src/item_use.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/item_use.c b/src/item_use.c index 348806e06..3920ae5bd 100644 --- a/src/item_use.c +++ b/src/item_use.c @@ -312,7 +312,7 @@ void RunItemfinderResults(u8 taskId) } return; } - PlaySE(SE_DAUGI); // play the itemfinder jingle 4 times before executing the itemfinder. + PlaySE(SE_ITEMFINDER); // play the itemfinder jingle 4 times before executing the itemfinder. data[4]++; } data[3] = (data[3] + 1) & 0x1F; @@ -744,7 +744,7 @@ void ItemUseOutOfBattle_TMHM(u8 taskId) static void BootTMHM(u8 taskId) { - PlaySE(SE_PC_LOGON); + PlaySE(SE_PC_LOGIN); gTasks[taskId].func = WaitButtonPressAndDisplayTMHMInfo; } @@ -803,7 +803,7 @@ static void PlayBlackWhiteFluteSound(u8 taskId) { if(++gTasks[taskId].data[15] > 7) { - PlaySE(SE_BIDORO); + PlaySE(SE_GLASS_FLUTE); DisplayItemMessageOnField(taskId, gStringVar4, CleanUpItemMenuMessage, 1); } } @@ -896,7 +896,7 @@ void sub_80CA2BC(u8 taskId) { if(++gTasks[taskId].data[15] > 7) { - PlaySE(SE_KAIFUKU); + PlaySE(SE_USE_ITEM); RemoveBagItem(gSpecialVar_ItemId, 1); DisplayItemMessageOnField(taskId, sub_803F378(gSpecialVar_ItemId), sub_80CA294, 1); } |