A
Anonymous
Guest
In USBUIRT.cs, the following line (halfway through the file):
xmlwriter.SetValue("USBUIRT", "needsenter", inputCheckBox.Checked ? "true" : "false");
should be:
xmlwriter.SetValue("USBUIRT", "needsenter", enterCheckBox.Checked ? "true" : "false");
xmlwriter.SetValue("USBUIRT", "needsenter", inputCheckBox.Checked ? "true" : "false");
should be:
xmlwriter.SetValue("USBUIRT", "needsenter", enterCheckBox.Checked ? "true" : "false");