mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-10-30 08:03:03 +00:00
address wisereview
This commit is contained in:
parent
31b86e2b30
commit
f1f3bbb539
2 changed files with 3 additions and 2 deletions
|
|
@ -80,7 +80,9 @@ void camera_post_play_update(PlayState* play) {
|
||||||
bool force_no_interpolation = false;
|
bool force_no_interpolation = false;
|
||||||
|
|
||||||
// Music Box House. The camera gets teleported by a very small amount when Link gets the Gibdo mask.
|
// Music Box House. The camera gets teleported by a very small amount when Link gets the Gibdo mask.
|
||||||
force_no_interpolation = play->sceneId == SCENE_MUSICHOUSE && play->csCtx.scriptIndex == 2 && play->csCtx.curFrame == 525;
|
if (play->sceneId == SCENE_MUSICHOUSE && play->csCtx.scriptIndex == 2 && play->csCtx.curFrame == 525 && active_cam->setting == CAM_SET_FREE0) {
|
||||||
|
force_no_interpolation = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (force_no_interpolation) {
|
if (force_no_interpolation) {
|
||||||
force_camera_skip_interpolation();
|
force_camera_skip_interpolation();
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,6 @@ RECOMP_PATCH s32 EnHgo_HandleCsAction(EnHgo* this, PlayState* play) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
actor_set_interpolation_skipped(&this->actor);
|
actor_set_interpolation_skipped(&this->actor);
|
||||||
recomp_printf("Skipping\n");
|
|
||||||
} else if (Animation_OnFrame(&this->skelAnime, this->skelAnime.endFrame)) {
|
} else if (Animation_OnFrame(&this->skelAnime, this->skelAnime.endFrame)) {
|
||||||
switch (this->animIndex) {
|
switch (this->animIndex) {
|
||||||
case HGO_ANIM_ASTONISHED:
|
case HGO_ANIM_ASTONISHED:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue