Skip to content

Commit

Permalink
Clarify Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuyler36 committed Apr 2, 2020
1 parent 5d839d3 commit 7b8204a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyHorizons/Data/Save/RevisionManager.cs
Expand Up @@ -69,7 +69,7 @@ public static class RevisionManager
// Gets the revision info for a given file data.
public static SaveRevision? GetFileRevision(in byte[] data)
{
// Revision data seems to be 0x40 in length. First one is current revision, second one is either "prev revision" or "creation revision"
// Revision data seems to be 0x40 in length. First one is current revision, second one is "creation revision"
if (data.Length < 0x80) return null;
var maj = BitConverter.ToUInt32(data, 0);
var min = BitConverter.ToUInt32(data, 4);
Expand Down

0 comments on commit 7b8204a

Please sign in to comment.