Skip to content

Commit

Permalink
Corrected the min/max version support
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmadjack committed Jan 28, 2014
1 parent e32fb73 commit b980300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GameXmlFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

namespace GameSaveInfo {
public class GameXmlFile : AXmlDataFile<Game> {
public static Version MinimumSupportedVersion = new Version(2, 2);
public static Version MaximumSupportedVersion = new Version(2, 0,2);
public static Version MinimumSupportedVersion = new Version(2, 0, 2);
public static Version MaximumSupportedVersion = new Version(2, 2);

public const string Schema = "GameSaveInfo22.xsd";

Expand Down

0 comments on commit b980300

Please sign in to comment.