Skip to content
Snippets Groups Projects
Commit e5930255 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

fix treatment of .sys file ending

parent 442ca327
Branches
Tags
No related merge requests found
......@@ -376,7 +376,7 @@ public class TLC4B {
// the following lines fix incorrect file names
filename = filename.replace("\\", File.separator);
filename = filename.replace("/", File.separator);
if (!filename.toLowerCase().endsWith(".mch") ||
if (!filename.toLowerCase().endsWith(".mch") &&
!filename.toLowerCase().endsWith(".sys")) {
filename = filename + ".mch";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment