@@ -532,7 +532,7 @@ bool OptionDevice(int *current_device, std::string argument, Options *options, s
532532 }
533533}
534534
535- bool OptionZone (int *current_device, int *current_zone, std::string argument, Options *options, std::vector<RGBController *> &rgb_controllers)
535+ bool OptionZone (int *current_device, int *current_zone, std::string argument, Options */* options*/ , std::vector<RGBController *> &rgb_controllers)
536536{
537537 ResourceManager::get ()->WaitForDeviceDetection ();
538538
@@ -557,7 +557,7 @@ bool OptionZone(int *current_device, int *current_zone, std::string argument, Op
557557 }
558558}
559559
560- bool OptionColor (int *currentDev, int *current_zone, std::string argument, Options *options)
560+ bool OptionColor (int *currentDev, int */* current_zone*/ , std::string argument, Options *options)
561561{
562562 DeviceOptions* currentDevOpts = GetDeviceOptionsForDevID (options, *currentDev);
563563
@@ -587,7 +587,7 @@ bool OptionMode(int *currentDev, std::string argument, Options *options)
587587 return true ;
588588}
589589
590- bool OptionSize (int *current_device, int *current_zone, std::string argument, Options *options, std::vector<RGBController *> &rgb_controllers)
590+ bool OptionSize (int *current_device, int *current_zone, std::string argument, Options */* options*/ , std::vector<RGBController *> &rgb_controllers)
591591{
592592 const unsigned int new_size = std::stoi (argument);
593593
@@ -1024,7 +1024,7 @@ void ApplyOptions(DeviceOptions& options, std::vector<RGBController *> &rgb_cont
10241024
10251025void WaitWhileServerOnline (NetworkServer* srv)
10261026{
1027- while (network_server ->GetOnline ())
1027+ while (srv ->GetOnline ())
10281028 {
10291029 std::this_thread::sleep_for (1s);
10301030 };
0 commit comments