Fix softwarelist read

This commit is contained in:
Matt Nadareski
2020-06-16 11:27:10 -07:00
parent e7984b7b74
commit a7e52919c3

View File

@@ -293,7 +293,7 @@ namespace SabreTools.Library.DatFiles
break;
case "feature":
features.Add(new KeyValuePair<string, string>(reader.GetAttribute("name"), reader.GetAttribute("feature")));
features.Add(new KeyValuePair<string, string>(reader.GetAttribute("name"), reader.GetAttribute("value")));
reader.Read();
break;