Browse Source

Add correct separator

Baglio Tabifata 4 years ago
parent
commit
7657b3ad2d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/net/hkzlab/dupal/boardio/DuPALAnalyzer.java

+ 3 - 3
src/net/hkzlab/dupal/boardio/DuPALAnalyzer.java

@@ -53,9 +53,9 @@ public class DuPALAnalyzer {
         this.IOasOUT_Mask = IOasOUT_Mask;
         this.outPath = outPath;
 
-        serdump_path = outPath + File.pathSeparator + SERIALIZED_DUMP;
-        tblPath_out = outPath + File.pathSeparator + OUT_TABLE;
-        tblPath_regout = outPath + File.pathSeparator + REGOUT_TABLE;
+        serdump_path = outPath + File.separator+ SERIALIZED_DUMP;
+        tblPath_out = outPath + File.separator + OUT_TABLE;
+        tblPath_regout = outPath + File.separator + REGOUT_TABLE;
 
         this.pathMap = new HashMap<>();
         this.mStates = new MacroState[1 << pspecs.getNumROUTPins()];