Fixed config generation for Windows users

This commit is contained in:
zml2008 2011-10-02 01:30:10 -07:00
parent c1f1885633
commit 72e4922e8e

View File

@ -690,7 +690,7 @@ public void createDefaultConfiguration(File actual,
null;
try {
JarFile file = new JarFile(getFile());
ZipEntry copy = file.getEntry("defaults" + File.separator + defaultName);
ZipEntry copy = file.getEntry("defaults/" + defaultName);
if (copy == null) throw new FileNotFoundException();
input = file.getInputStream(copy);
} catch (IOException e) {