Skip to content

Commit

Permalink
Add very basic support for Animal Forest
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-overton committed Jun 10, 2023
1 parent fff02b8 commit a960313
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Z64Utils/Z64/Z64Memory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ private void LoadOvls()
{
Z64GameType.Oot => 6,
Z64GameType.Mm => 7,
Z64GameType.Af => 10,
_ => 0,
};
if (_game.Version.Memory.GameStateTable.HasValue)
Expand All @@ -73,6 +74,7 @@ private void LoadOvls()
{
Z64GameType.Oot => 471,
Z64GameType.Mm => 690,
Z64GameType.Af => 201,
_ => 0,
};
if (_game.Version.Memory.ActorTable.HasValue)
Expand Down
1 change: 1 addition & 0 deletions Z64Utils/Z64/Z64Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public enum Z64GameType
Unknow,
Oot,
Mm,
Af,
}

public enum Z64FileCompression
Expand Down

0 comments on commit a960313

Please sign in to comment.