From b7161a92957245bce42eff878730c473990f8d4b Mon Sep 17 00:00:00 2001 From: Downforce Agent Date: Sun, 21 Jul 2024 07:18:59 -0500 Subject: [PATCH] fix typo breaking ATRAC9 support --- firestar/src/main/java/Suggs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firestar/src/main/java/Suggs.java b/firestar/src/main/java/Suggs.java index 6fb86a6..0fda039 100644 --- a/firestar/src/main/java/Suggs.java +++ b/firestar/src/main/java/Suggs.java @@ -302,7 +302,7 @@ public class Suggs implements ActionListener, ListSelectionListener { try { // Assume whoever made the AT9s knows what they're doing System.out.println("Copying track #" + (i+1) + " \"" + at.artist + " - " + at.title + "\"..."); - Files.copy(at.path.toPath(), Paths.get(Main.inpath + "tmp/data/audio/music/" + trackno + "/music_stereo.at9"), StandardCopyOption.REPLACE_EXISTING); + Files.copy(at.path.toPath(), Paths.get(Main.inpath + "temp/data/audio/music/" + trackno + "/music_stereo.at9"), StandardCopyOption.REPLACE_EXISTING); } catch (IOException ex) { Logger.getLogger(Suggs.class.getName()).log(Level.SEVERE, null, ex); }