diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-26 18:54:02 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-26 18:54:02 -0600 |
commit | 21689ef744ddf43965ccad89dc1133a905011d7f (patch) | |
tree | 3e9c1181b4f5f1be626e63a6965d6fe8f6d86d30 | |
parent | 17e0ccccc8619f96d2cf56bd98d63a7e59f5301d (diff) |
altosui: Missing 'break' after selecting 'mega' format detection
Caused 'mega' logs to be dumped in 'mini' format which didn't work well.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosEepromDownload.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/altosui/AltosEepromDownload.java b/altosui/AltosEepromDownload.java index dc61724d..46715db6 100644 --- a/altosui/AltosEepromDownload.java +++ b/altosui/AltosEepromDownload.java @@ -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); |