summaryrefslogtreecommitdiff
path: root/soh/src/code
diff options
context:
space:
mode:
authorvaguerant <vaguerant@users.noreply.github.com>2022-07-08 12:19:41 +1000
committerGitHub <noreply@github.com>2022-07-07 22:19:41 -0400
commita1f92d76ab5b60d29b07b0332dbfb6936bff74f7 (patch)
tree0645aaf9915a32692aa58be661bcef86956ebcd7 /soh/src/code
parent60e713855abd536d03e58709c218a11fc1dfff88 (diff)
Fix Ganon's Castle title cards (#606)
Diffstat (limited to 'soh/src/code')
-rw-r--r--soh/src/code/z_actor.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/soh/src/code/z_actor.c b/soh/src/code/z_actor.c
index 79ae75d56..6c755966a 100644
--- a/soh/src/code/z_actor.c
+++ b/soh/src/code/z_actor.c
@@ -843,9 +843,12 @@ void TitleCard_InitPlaceName(GlobalContext* globalCtx, TitleCardContext* titleCt
case SCENE_GERUDOWAY:
texture = gThievesHideoutTitleCardENGTex;
break;
- case SCENE_GANONTIKA:
+ case SCENE_GANON_TOU:
texture = gGanonsCastleTitleCardENGTex;
break;
+ case SCENE_GANONTIKA:
+ texture = gInsideGanonsCastleTitleCardENGTex;
+ break;
case SCENE_TAKARAYA:
texture = gTreasureBoxShopTitleCardENGTex;
break;