Skip to content

Commit

Permalink
FF7: Fix eye mapping for Tifa/Aerith young models
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Dec 18, 2023
1 parent 09845d6 commit b7f2912
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ff7/field/model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,8 @@ namespace ff7::field
return 1;
if ( !_strcmpi(model_name, "AGGB") )
return 1;
if ( !_strcmpi(model_name, "BUAC") )
return 1;

// Aerith
if ( !_strcmpi(model_name, "AUFF") )
Expand All @@ -330,6 +332,10 @@ namespace ff7::field
return 2;
if ( !_strcmpi(model_name, "AZBB") )
return 2;
if ( !_strcmpi(model_name, "CQGA") )
return 2;
if ( !_strcmpi(model_name, "DIFF") )
return 2;

// Barret
if ( !_strcmpi(model_name, "ACGD") )
Expand Down

0 comments on commit b7f2912

Please sign in to comment.