Skip to content

Commit

Permalink
Merge pull request #616 from FedericoMilesi/MORPH_Continue
Browse files Browse the repository at this point in the history
[STREAM]: Update MORPH_Continue
  • Loading branch information
FedericoMilesi authored Jan 31, 2024
2 parents 24fcc5f + 6057f3d commit c5b7a92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions KAIN2/Game/STREAM.C
Original file line number Diff line number Diff line change
Expand Up @@ -3347,7 +3347,7 @@ void MORPH_UpdateTextures()//Matching - 95%
MORPH_ChangeAreaPalettes(time);
}

void MORPH_Continue()
void MORPH_Continue() // Matching - 100%
{
int i;
long mode;
Expand Down Expand Up @@ -3375,14 +3375,14 @@ void MORPH_Continue()

if (gameTrackerX.playerInstance->tface != NULL && mode >= 0)
{
if (gameTrackerX.playerInstance->tface == MORPH_SavedFace)
if (MORPH_SavedFace == gameTrackerX.playerInstance->tface)
{
MORPH_UpdateTrackingPoint(MORPH_SavedFace, MORPH_SavedLevel);
}
else
{
MORPH_GetComponentsForTrackingPoint(gameTrackerX.playerInstance->tface, (struct Level*)gameTrackerX.playerInstance->tfaceLevel);

MORPH_UpdateTrackingPoint(gameTrackerX.playerInstance->tface, (struct Level*)gameTrackerX.playerInstance->tfaceLevel);
}
}
Expand Down

0 comments on commit c5b7a92

Please sign in to comment.