altosui: Missing 'break' after selecting 'mega' format detection
authorKeith Packard <keithp@keithp.com>
Mon, 27 May 2013 00:54:02 +0000 (18:54 -0600)
committerKeith Packard <keithp@keithp.com>
Mon, 27 May 2013 00:54:02 +0000 (18:54 -0600)
Caused 'mega' logs to be dumped in 'mini' format which didn't work well.

Signed-off-by: Keith Packard <keithp@keithp.com>
altosui/AltosEepromDownload.java

index dc61724d61f1323882493c3e49f163361b303bf5..46715db64100a8a4a111edc9e448d329df83f640 100644 (file)
@@ -417,9 +417,11 @@ public class AltosEepromDownload implements Runnable {
                        case AltosLib.AO_LOG_FORMAT_TELEMEGA:
                                extension = "mega";
                                CaptureMega(eechunk);
+                               break;
                        case AltosLib.AO_LOG_FORMAT_MINI:
                                extension = "mini";
                                CaptureMini(eechunk);
+                               break;
                        }
                }
                CheckFile(true);