From: Keith Packard Date: Mon, 27 May 2013 00:54:02 +0000 (-0600) Subject: altosui: Missing 'break' after selecting 'mega' format detection X-Git-Tag: 1.2.9.4~183 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=21689ef744ddf43965ccad89dc1133a905011d7f 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 --- 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);