visualizer: set interval between "synchronizations" to sane value

ugh, I set it to 5 seconds for testing purposes and then forgot
to change it back ~~ it should be at least 120 seconds.
master
Andrzej Rybczak 17 years ago
parent dfb4653669
commit b6059e2255
  1. 2
      src/visualizer.cpp

@ -107,7 +107,7 @@ void Visualizer::Update()
return;
}
if (itsOutputID != -1 && Global::Timer.tv_sec > itsTimer.tv_sec+5)
if (itsOutputID != -1 && Global::Timer.tv_sec > itsTimer.tv_sec+120)
{
Mpd.DisableOutput(itsOutputID);
Mpd.EnableOutput(itsOutputID);

Loading…
Cancel
Save