diff options
| author | Tom Overton <tom-overton@users.noreply.github.com> | 2026-02-05 03:19:11 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-05 08:19:11 -0300 |
| commit | ad7a80cb8f3531e88bcafe928a12bee4fea0ec53 (patch) | |
| tree | d1a2a7a1b274ab7862559753adca1c4c7a8a3dc5 /src | |
| parent | d358e1d213c29c6e63be30c1c67b96a90f45ccc4 (diff) | |
Match `Bg_Crace_Movebg` for JP 1.1 (#1852)
Diffstat (limited to 'src')
| -rw-r--r-- | src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c b/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c index 72c979b90..18432c5f3 100644 --- a/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c +++ b/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c @@ -333,7 +333,11 @@ void BgCraceMovebg_ClosingDoor_Close(BgCraceMovebg* this, PlayState* play) { BgCraceMovebg_ClosingDoor_SetupDoNothing(this, play); } else { +#if MM_VERSION >= N64_US Actor_PlaySfx_Flagged(&this->dyna.actor, NA_SE_EV_STONEDOOR_CLOSE_S - SFX_FLAG); +#else + Actor_PlaySfx_Flagged(&this->dyna.actor, NA_SE_EV_STONE_STATUE_OPEN - SFX_FLAG); +#endif } } |
