Skip to content

Commit

Permalink
Check for corrupt files: Allow empty version field in VEF resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Argent77 committed Apr 18, 2020
1 parent 059d143 commit 98e1b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/infinity/check/StructChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public final class StructChecker extends AbstractChecker implements ListSelectio
fileInfo.put("PRO", new StructInfo("PRO ", new String[]{"V1.0"}));
fileInfo.put("SPL", new StructInfo("SPL ", new String[]{"V1 ", "V2.0"}));
fileInfo.put("STO", new StructInfo("STOR", new String[]{"V1.0", "V1.1", "V9.0"}));
fileInfo.put("VEF", new StructInfo("VEF ", new String[]{"V1.0"}));
fileInfo.put("VEF", new StructInfo("VEF ", new String[]{"V1.0", ""}));
fileInfo.put("VVC", new StructInfo("VVC ", new String[]{"V1.0"}));
fileInfo.put("WED", new StructInfo("WED ", new String[]{"V1.3"}));
fileInfo.put("WMP", new StructInfo("WMAP", new String[]{"V1.0"}));
Expand Down

0 comments on commit 98e1b67

Please sign in to comment.