Skip to content

Commit

Permalink
fixed led count changing
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Jul 9, 2024
1 parent 3d2d70d commit 2c29c3e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions VortexEditor/VortexEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,22 +478,22 @@ void VortexEditor::handleMenus(uintptr_t hMenu)
m_chromalink.show();
return;
case ID_CHOOSE_DEVICE_ORBIT:
m_engine.leds().setLedCount(28);
m_vortex.setLedCount(28);
break;
case ID_CHOOSE_DEVICE_HANDLE:
m_engine.leds().setLedCount(3);
m_vortex.setLedCount(3);
break;
case ID_CHOOSE_DEVICE_GLOVES:
m_engine.leds().setLedCount(10);
m_vortex.setLedCount(10);
break;
case ID_CHOOSE_DEVICE_CHROMADECK:
m_engine.leds().setLedCount(20);
m_vortex.setLedCount(20);
break;
case ID_CHOOSE_DEVICE_SPARK:
m_engine.leds().setLedCount(6);
m_vortex.setLedCount(6);
break;
case ID_CHOOSE_DEVICE_DUO:
m_engine.leds().setLedCount(2);
m_vortex.setLedCount(2);
break;
default:
break;
Expand Down

0 comments on commit 2c29c3e

Please sign in to comment.