diff options
| author | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2024-02-16 02:03:22 -0500 |
|---|---|---|
| committer | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2024-02-16 02:03:22 -0500 |
| commit | 30ff3e9585eccaddae10058b2c773202b9aeab32 (patch) | |
| tree | 4589dbb8e62cffd9a234ef5572acd696520cbc60 /soh/src/code | |
| parent | e433cce799cb0d04fd93732c48ff9373aa191571 (diff) | |
fix the torch
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/z_onepointdemo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/soh/src/code/z_onepointdemo.c b/soh/src/code/z_onepointdemo.c index ad5df65bd..68c0a4dff 100644 --- a/soh/src/code/z_onepointdemo.c +++ b/soh/src/code/z_onepointdemo.c @@ -1174,11 +1174,11 @@ s16 OnePointCutscene_Init(PlayState* play, s16 csId, s16 timer, Actor* actor, s1 if (actor != NULL && actor->id != ACTOR_PLAYER) { if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_ACTOR_CS, true, actor)) { - return; + return SUBCAM_NONE; } } else { if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_CS, true, &csId)) { - return; + return SUBCAM_NONE; } } |
