altosui: Split out UI-specific preferences
[fw/altos] / altosui / AltosFile.java
index 2e33b271dded901ca6a453ded9efa9326262e400..e2b6d5a65b09b58c4f725e54c65bb05f23af9a3f 100644 (file)
@@ -24,7 +24,7 @@ import java.util.*;
 class AltosFile extends File {
 
        public AltosFile(int year, int month, int day, int serial, int flight, String extension) {
-               super (AltosPreferences.logdir(),
+               super (AltosUIPreferences.logdir(),
                       String.format("%04d-%02d-%02d-serial-%03d-flight-%03d.%s",
                                     year, month, day, serial, flight, extension));
        }