summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorYanis <35189056+Yanis002@users.noreply.github.com>2024-12-14 00:28:48 +0100
committerGitHub <noreply@github.com>2024-12-13 18:28:48 -0500
commit4b20d8269b42b2892ef494afd0b6ccba78ba6c00 (patch)
tree15bee9e1c389b0f1879cc2fee1dbabdd5ea4e0cf /src/code
parentd12750b956793bd3cffb091beeccb1ede6068e17 (diff)
Naming cutscenes from Lon-Lon Ranch (#2359)
* name cs from ranch * fixed llr credits cs dest part 5 and 6 being inverted * format
Diffstat (limited to 'src/code')
-rw-r--r--src/code/z_demo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_demo.c b/src/code/z_demo.c
index 58a2b690a..89726c6a2 100644
--- a/src/code/z_demo.c
+++ b/src/code/z_demo.c
@@ -1134,7 +1134,7 @@ void CutsceneCmd_Destination(PlayState* play, CutsceneContext* csCtx, CsCmdDesti
play->transitionType = TRANS_TYPE_FADE_BLACK;
break;
- case CS_DEST_LON_LON_RANCH_CREDITS_PART_5:
+ case CS_DEST_LON_LON_RANCH_CREDITS_PART_6:
play->linkAgeOnLoad = LINK_AGE_CHILD;
play->nextEntranceIndex = ENTR_LON_LON_RANCH_0;
play->transitionTrigger = TRANS_TRIGGER_START;
@@ -1142,7 +1142,7 @@ void CutsceneCmd_Destination(PlayState* play, CutsceneContext* csCtx, CsCmdDesti
play->transitionType = TRANS_TYPE_FADE_BLACK;
break;
- case CS_DEST_LON_LON_RANCH_CREDITS_PART_6:
+ case CS_DEST_LON_LON_RANCH_CREDITS_PART_5:
play->nextEntranceIndex = ENTR_LON_LON_RANCH_0;
play->transitionTrigger = TRANS_TRIGGER_START;
gSaveContext.save.cutsceneIndex = 0xFFF7;