Skip to content

Commit 53ff1a6

Browse files
Fix unused parameter warnings in RGBController_NZXTMouse.cpp
1 parent 813fcec commit 53ff1a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Controllers/NZXTMouseController/RGBController_NZXTMouse.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ void RGBController_NZXTMouse::DeviceUpdateLEDs()
102102
controller->SetLEDs(&colors[0]);
103103
}
104104

105-
void RGBController_NZXTMouse::UpdateZoneLEDs(int zone)
105+
void RGBController_NZXTMouse::UpdateZoneLEDs(int /*zone*/)
106106
{
107107
DeviceUpdateLEDs();
108108
}
109109

110-
void RGBController_NZXTMouse::UpdateSingleLED(int led)
110+
void RGBController_NZXTMouse::UpdateSingleLED(int /*led*/)
111111
{
112112
DeviceUpdateLEDs();
113113
}

0 commit comments

Comments
 (0)