Skip to content

Commit

Permalink
Added more printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyAphid committed Jul 26, 2018
1 parent 4d95ad5 commit ff0bd3f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ public class PaletteSwapperCore {
public static void main(String args[]) {

try {
System.out.println("Please select a palette definition.");
File[] paletteFiles = getPaletteFiles();

System.out.println("Please select image files to edit.");
File[] imageFiles = getImageFiles();

System.out.println("Starting:");
for (int i = 0; i < paletteFiles.length; i++) {
PaletteSwapper.buildPalette(paletteFiles[i], imageFiles);
}
Expand All @@ -31,6 +35,7 @@ public static void main(String args[]) {

JOptionPane.showMessageDialog(null, "Palette swap complete. Exiting program.", "Success", JOptionPane.INFORMATION_MESSAGE);

System.out.println("Exiting...");
System.exit(0);
}

Expand Down

0 comments on commit ff0bd3f

Please sign in to comment.