diff options
author | Keith Packard <keithp@keithp.com> | 2016-03-20 22:01:07 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-03-20 22:01:07 -0700 |
commit | 4dddf0a9134690d94217ad12bc7372683276f8ba (patch) | |
tree | 5211d479e17108d71fdd8e0ae8fe26ff596e482b | |
parent | 054f2896b98a14051e0b818090f2de178bb77283 (diff) |
altosuilib: Note that Windows now supports Bluetooth
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosuilib/AltosUILib.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/altosuilib/AltosUILib.java b/altosuilib/AltosUILib.java index 1f1ad23b..30813ae7 100644 --- a/altosuilib/AltosUILib.java +++ b/altosuilib/AltosUILib.java @@ -112,9 +112,8 @@ public class AltosUILib extends AltosLib { String OS = System.getProperty("os.name"); - if (OS.startsWith("Linux")) { + if (OS.startsWith("L") || OS.startsWith("W")) has_bluetooth = true; - } initialized = true; } |