Skip to content

Commit

Permalink
Replaced console print with error window
Browse files Browse the repository at this point in the history
  • Loading branch information
marios8543 committed Oct 11, 2018
1 parent 3644f51 commit 5ccbe93
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 1 deletion.
Binary file modified out/artifacts/BongoMidi_jar/BongoMidi.jar
Binary file not shown.
Binary file removed out/production/BongoMidi/com/bongo/Main$1.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/Main.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/MyCanvas.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/Renderer$Bongo.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/Renderer$Instr_Categ.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/Renderer$hands.class
Binary file not shown.
Binary file modified out/production/BongoMidi/com/bongo/Renderer.class
Binary file not shown.
2 changes: 1 addition & 1 deletion src/com/bongo/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static void main(String[] args) throws Exception {
try {
Thread.sleep(ms);
} catch (Exception e) {
System.out.println("[ERROR] Render thread interrupted");
JOptionPane.showMessageDialog(window, "Renderer thread interrupted", "Error", JOptionPane.ERROR_MESSAGE);
}
if (!playing) continue;
window.repaint();
Expand Down

0 comments on commit 5ccbe93

Please sign in to comment.