summaryrefslogtreecommitdiff
path: root/src/field_special_scene.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/field_special_scene.c')
-rw-r--r--src/field_special_scene.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/field_special_scene.c b/src/field_special_scene.c
index 6282ea813..59280b743 100644
--- a/src/field_special_scene.c
+++ b/src/field_special_scene.c
@@ -157,7 +157,7 @@ void Task_HandleTruckSequence(u8 taskId)
data[1] = 0; // reset the timer.
data[2] = CreateTask(Task_Truck1, 0xA);
data[0] = 1; // run the next case.
- PlaySoundEffect(SE_TRACK_MOVE);
+ PlaySE(SE_TRACK_MOVE);
}
break;
case 1:
@@ -177,7 +177,7 @@ void Task_HandleTruckSequence(u8 taskId)
DestroyTask(data[2]);
data[3] = CreateTask(Task_Truck2, 0xA);
data[0] = 3;
- PlaySoundEffect(SE_TRACK_STOP);
+ PlaySE(SE_TRACK_STOP);
}
break;
case 3:
@@ -192,7 +192,7 @@ void Task_HandleTruckSequence(u8 taskId)
data[1]++;
if (data[1] == 90)
{
- PlaySoundEffect(SE_TRACK_HAIK);
+ PlaySE(SE_TRACK_HAIK);
data[1] = 0;
data[0] = 5;
}
@@ -205,7 +205,7 @@ void Task_HandleTruckSequence(u8 taskId)
MapGridSetMetatileIdAt(11, 9, 528);
MapGridSetMetatileIdAt(11, 10, 536);
DrawWholeMapView();
- PlaySoundEffect(SE_TRACK_DOOR);
+ PlaySE(SE_TRACK_DOOR);
DestroyTask(taskId);
ScriptContext2_Disable();
}