Skip to content

Commit

Permalink
Fixed exception with no args.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Aug 16, 2022
1 parent bbfaa89 commit 253ef75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/esotericsoftware/darksoulssaver/DarkSoulsSaver.java
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ static public void main (String[] args) throws Exception {
System.out.println("C:\\Users\\USERNAME\\AppData\\Roaming\\DarkSoulsII\\NUMBER\\DS2SOFS0000.sl2");
System.out.println("C:\\Program Files\\Steam\\steam.exe -applaunch 335300");
System.out.println("DarkSoulsII.exe");
}
new DarkSoulsSaver(new File(args[0]));
} else
new DarkSoulsSaver(new File(args[0]));
}
}

0 comments on commit 253ef75

Please sign in to comment.