diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-20 18:02:00 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-20 19:06:14 -0400 |
commit | 30142411799650c17367ce4652269e8ecca7ceef (patch) | |
tree | 69a4b6b971c0df861bf549c64029317e1146ab99 /src/field_special_scene.c | |
parent | 6c34effda93c67a37895e79b684b31b3cb9a2a88 (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/field_special_scene.c')
-rw-r--r-- | src/field_special_scene.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/field_special_scene.c b/src/field_special_scene.c index bb8e8b1d9..bd6c833af 100644 --- a/src/field_special_scene.c +++ b/src/field_special_scene.c @@ -171,7 +171,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. - PlaySE(SE_TRACK_MOVE); + PlaySE(SE_TRUCK_MOVE); } break; case 1: @@ -191,7 +191,7 @@ void Task_HandleTruckSequence(u8 taskId) DestroyTask(data[2]); data[3] = CreateTask(Task_Truck2, 0xA); data[0] = 3; - PlaySE(SE_TRACK_STOP); + PlaySE(SE_TRUCK_STOP); } break; case 3: @@ -206,7 +206,7 @@ void Task_HandleTruckSequence(u8 taskId) data[1]++; if (data[1] == 90) { - PlaySE(SE_TRACK_HAIKI); + PlaySE(SE_TRUCK_UNLOAD); data[1] = 0; data[0] = 5; } @@ -219,7 +219,7 @@ void Task_HandleTruckSequence(u8 taskId) MapGridSetMetatileIdAt(11, 9, METATILE_InsideOfTruck_ExitLight_Mid); MapGridSetMetatileIdAt(11, 10, METATILE_InsideOfTruck_ExitLight_Bottom); DrawWholeMapView(); - PlaySE(SE_TRACK_DOOR); + PlaySE(SE_TRUCK_DOOR); DestroyTask(taskId); ScriptContext2_Disable(); } |