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

try and allow .sys files

parent a9e8bfbf
No related branches found
No related tags found
No related merge requests found
......@@ -376,7 +376,8 @@ 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