Skip to content

Commit

Permalink
Added warning message when the config is missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayyy committed Feb 15, 2020
1 parent 5fc2ca2 commit e975f1e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/uorocketry/basestation/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,9 @@ public void loadConfig(String fileName) {
} catch (IOException e) {
e.printStackTrace();

JOptionPane.showMessageDialog(window, "The config file was not found in " + fileName +
"\r\n\r\nIf you plan downloaded a release build, you might want to download the version with labels and sample data included.");

return;
}

Expand Down

0 comments on commit e975f1e

Please sign in to comment.