Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisai-dev committed Jun 9, 2023
1 parent 7923527 commit 9fdd3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Unreal.Core/ReplayReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public virtual void ReadReplayInfo(FArchive archive)
{
_logger?.LogWarning("Found unexpected ReplayVersionHistory: {}", fileVersion);
}
if (archive.ReplayVersion == ReplayVersionHistory.HISTORY_2500)
if (archive.ReplayVersion >= ReplayVersionHistory.HISTORY_2500)
{
var customVersionCount = archive.ReadInt32();

Expand Down

0 comments on commit 9fdd3af

Please sign in to comment.