diff options
author | Keith Packard <keithp@keithp.com> | 2010-08-24 04:01:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-08-24 04:01:14 -0700 |
commit | f62b2aa08ebfd912b3c732397d43ff9f6162ec88 (patch) | |
tree | 89b7154a466ad78c159d14e04d8af0eeaae693e8 | |
parent | d93787284c8e514a929edb9f944c98ae0206a33f (diff) |
altosui: fetch existing romconfig for flashing
-rw-r--r-- | ao-tools/altosui/AltosFlash.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ao-tools/altosui/AltosFlash.java b/ao-tools/altosui/AltosFlash.java index 7aeab89a..b7018555 100644 --- a/ao-tools/altosui/AltosFlash.java +++ b/ao-tools/altosui/AltosFlash.java @@ -315,6 +315,8 @@ public class AltosFlash { } public AltosRomconfig romconfig() { + if (!check_rom_config()) + return null; return rom_config; } |