Skip to content

Commit

Permalink
reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Browse files Browse the repository at this point in the history
  • Loading branch information
Difegue committed Jul 20, 2019
1 parent c553df8 commit f8520bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/difegue/doujinsoft/wc24/LZSS.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ public void LZS_Encode(String filename, String output) throws Exception{
Runtime rt = Runtime.getRuntime();

if (System.getProperty("os.name").toLowerCase().contains("win"))
rt.exec(binaryDir+"\\gbalzss.exe e "+filename+" "+output);
rt.exec(binaryDir+"\\gbalzss.exe e "+filename+" "+output).waitFor();
else {
rt.exec("chmod +x "+binaryDir+"/gbalzss").waitFor();
rt.exec(binaryDir+"/gbalzss e "+filename+" "+output);
rt.exec(binaryDir+"/gbalzss e "+filename+" "+output).waitFor();
}

}
Expand Down

0 comments on commit f8520bb

Please sign in to comment.