diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-21 11:16:54 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-21 11:16:54 -0700 |
commit | fd5567882b732f8947b44b217552077c82a3d28e (patch) | |
tree | 291a07d2c1f0586c238f29389abc881096e27c5f /altosui/AltosLanded.java | |
parent | fd55c1fe53adf5c50dcd3ce8296f80871cec73e9 (diff) | |
parent | 57b4d82dee10b142b820aa306028a288a85214f6 (diff) |
Merge branch 'lpc'
Diffstat (limited to 'altosui/AltosLanded.java')
-rw-r--r-- | altosui/AltosLanded.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 1d209bda..9dab52c4 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -253,6 +253,9 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio } else if (filename.endsWith("mega")) { FileInputStream in = new FileInputStream(file); records = new AltosEepromMegaIterable(in); + } else if (filename.endsWith("mini")) { + FileInputStream in = new FileInputStream(file); + records = new AltosEepromMiniIterable(in); } else { throw new FileNotFoundException(filename); } |