diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 03:11:03 -0400 |
commit | bb56d4a3f4cab33f899646e0630282fc6176a9c9 (patch) | |
tree | cb094078122b217fc67e2285614b79c6e83eaf88 /src/slot_machine.c | |
parent | c5839905a1259fd7e843c0ffa1ce2470d40b76ae (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/slot_machine.c')
-rw-r--r-- | src/slot_machine.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/slot_machine.c b/src/slot_machine.c index 074e8a36f..2c2891c5c 100644 --- a/src/slot_machine.c +++ b/src/slot_machine.c @@ -883,7 +883,7 @@ static void MainTask_SlotsGameLoop(u8 taskId) { sSlotMachineState->bet++; RemoveCoins(1); - PlaySE(SE_REGI); + PlaySE(SE_RS_SHOP); SetSlotMachineSetupTask(SLOTTASK_SHOW_AMOUNTS, 0); SetSlotMachineSetupTask(SLOTTASK_UPDATE_LINE_LIGHTS, 1); data[0] = 1; @@ -901,7 +901,7 @@ static void MainTask_SlotsGameLoop(u8 taskId) sSlotMachineState->bet += GetCoins(); SetCoins(0); } - PlaySE(SE_REGI); + PlaySE(SE_RS_SHOP); SetSlotMachineSetupTask(SLOTTASK_SHOW_AMOUNTS, 0); SetSlotMachineSetupTask(SLOTTASK_UPDATE_LINE_LIGHTS, 1); data[0] = 1; @@ -941,7 +941,7 @@ static void MainTask_SlotsGameLoop(u8 taskId) { if (JOY_NEW(A_BUTTON)) { - PlaySE(SE_JYUNI); + PlaySE(SE_CONTEST_PLACE); StopCurrentReel(sSlotMachineState->currentReel, sSlotMachineState->currentReel); PressReelButton(sSlotMachineState->currentReel, 0); data[0] = 4; @@ -1099,9 +1099,9 @@ static void MainTask_WinHandlePayout(u8 taskId) { case 0: if (sSlotMachineState->slotRewardClass == SLOT_PAYOUT_ROCKET || sSlotMachineState->slotRewardClass == SLOT_PAYOUT_7) - PlayFanfare(MUS_ME_B_BIG); + PlayFanfare(MUS_SLOTS_JACKPOT); else - PlayFanfare(MUS_ME_B_SMALL); + PlayFanfare(MUS_SLOTS_WIN); SetSlotMachineSetupTask(SLOTTASK_SHOW_AMOUNTS, 0); SetSlotMachineSetupTask(SLOTTASK_ANIM_WIN, 1); data[1] = 8; |