From 98e1b67dc2b0055ebac284214a11acc55b3aa5df Mon Sep 17 00:00:00 2001 From: Argent77 <4519923+Argent77@users.noreply.github.com> Date: Sat, 18 Apr 2020 18:46:31 +0200 Subject: [PATCH] Check for corrupt files: Allow empty version field in VEF resources --- src/org/infinity/check/StructChecker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/infinity/check/StructChecker.java b/src/org/infinity/check/StructChecker.java index 49dc6b536..be11dc7a7 100644 --- a/src/org/infinity/check/StructChecker.java +++ b/src/org/infinity/check/StructChecker.java @@ -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"}));