auto-sync
This commit is contained in:
parent
73d265b8f4
commit
3c375d5189
|
@ -34,7 +34,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
* @see com.rusefi.StartupFrame
|
||||
*/
|
||||
public class Launcher {
|
||||
public static final int CONSOLE_VERSION = 20150326;
|
||||
public static final int CONSOLE_VERSION = 20150328;
|
||||
public static final boolean SHOW_STIMULATOR = false;
|
||||
public static final String TAB_INDEX = "main_tab";
|
||||
private final String port;
|
||||
|
|
|
@ -273,6 +273,8 @@ public class EngineSnifferPanel {
|
|||
}
|
||||
|
||||
String fixSpark(String s) {
|
||||
if (s.toLowerCase().startsWith("hip"))
|
||||
return "z" + s; // let's place this at the bottom
|
||||
if (s.toLowerCase().startsWith("spa"))
|
||||
return "d" + s;
|
||||
return s;
|
||||
|
|
Loading…
Reference in New Issue