From 84a912554264792f15ac942bc8e509d0a3088563 Mon Sep 17 00:00:00 2001 From: brindosch Date: Mon, 23 May 2016 11:01:52 +0200 Subject: [PATCH] revert priority change Former-commit-id: 4c91a9710e8ea61acd8284b07868cb2e4bae0bd2 --- src/hyperiond/hyperiond.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hyperiond/hyperiond.cpp b/src/hyperiond/hyperiond.cpp index de91846c..cd427175 100644 --- a/src/hyperiond/hyperiond.cpp +++ b/src/hyperiond/hyperiond.cpp @@ -129,8 +129,8 @@ int main(int argc, char** argv) // Get the parameters for the bootsequence const std::string effectName = effectConfig["effect"].asString(); const unsigned duration_ms = effectConfig["duration_ms"].asUInt(); - const int priority = (duration_ms != 0) ? 0 : effectConfig.get("priority",700).asInt(); - const int bootcolor_priority = (priority > 700) ? priority+1 : 700; + const int priority = (duration_ms != 0) ? 0 : effectConfig.get("priority",990).asInt(); + const int bootcolor_priority = (priority > 990) ? priority+1 : 990; // clear the leds ColorRgb boot_color = ColorRgb::BLACK;