Fix typo in HyperCon knight rider

Former-commit-id: 43ce527d623d31c71f9b2edb9fc7aae6428fa841
This commit is contained in:
poljvd
2013-11-20 12:54:19 +01:00
parent 7e4466d2bf
commit 077f88a123
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ public class MiscConfig {
String bootPreamble = mBootsequenceEnabled? "\t" : "//\t";
strBuf.append(bootPreamble).append("\"bootsequence\" :\n");
strBuf.append(bootPreamble).append("{\n");
strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"type\" : \"%s\",\n", mBootSequence));
strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"type\" : \"%s\",\n", mBootSequence.name()));
strBuf.append(bootPreamble).append(String.format(Locale.ROOT, "\t\"duration_ms\" : %d\n", mBootSequenceLength_ms));
strBuf.append(bootPreamble).append("},\n\n");