Skip to content

Commit

Permalink
ConvertBitmap messages
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaRGB committed Sep 5, 2022
1 parent 54a6398 commit e9f4521
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ public static void main(String[] args) {
}
} else {
try {
System.out.print(arg + "...");
File file = new File(arg);
System.out.print("Converting " + file.getName() + "...");
BitmapInputFormat format = BitmapInputFormat.forFile(file);
if (format == null) {
System.out.println(" FAILED: Unknown input format.");
Expand Down Expand Up @@ -590,6 +590,7 @@ private static boolean exportFont(BitmapFont font, String name, Options o) throw
for (String id : f.ids) {
if (format.equals(id)) {
File out = getOutputFile(o.dest, name, f.suffix);
System.out.print(" to " + out.getName() + "...");
BitmapFontExporter exporter = f.createExporter(o.oo);
if (f.macResFork) {
out.createNewFile();
Expand Down

0 comments on commit e9f4521

Please sign in to comment.