mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Fix typo in HyperCon knight rider
Former-commit-id: 43ce527d623d31c71f9b2edb9fc7aae6428fa841
This commit is contained in:
parent
7e4466d2bf
commit
077f88a123
@ -339,7 +339,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
/// The boot-sequence configuration, contains the following items:
|
/// The boot-sequence configuration, contains the following items:
|
||||||
/// * type : The type of the boot-sequence ('rainbow', 'knight_rider', 'none')
|
/// * type : The type of the boot-sequence ('rainbow', 'knightrider', 'none')
|
||||||
/// * duration_ms : The length of the boot-sequence [ms]
|
/// * duration_ms : The length of the boot-sequence [ms]
|
||||||
"bootsequence" :
|
"bootsequence" :
|
||||||
{
|
{
|
||||||
|
@ -1 +1 @@
|
|||||||
97f01ae47416100223417becca5c3a50a773fbfa
|
944c2292ca55b16a31bdf1d89e0e7849d6879995
|
@ -68,7 +68,7 @@ public class MiscConfig {
|
|||||||
String bootPreamble = mBootsequenceEnabled? "\t" : "//\t";
|
String bootPreamble = mBootsequenceEnabled? "\t" : "//\t";
|
||||||
strBuf.append(bootPreamble).append("\"bootsequence\" :\n");
|
strBuf.append(bootPreamble).append("\"bootsequence\" :\n");
|
||||||
strBuf.append(bootPreamble).append("{\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(String.format(Locale.ROOT, "\t\"duration_ms\" : %d\n", mBootSequenceLength_ms));
|
||||||
strBuf.append(bootPreamble).append("},\n\n");
|
strBuf.append(bootPreamble).append("},\n\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user