fixed LEDs

This commit is contained in:
Gordon JC Pearce 2025-03-15 00:47:35 +00:00
parent 11df5c186f
commit c33fd60c5c
1 changed files with 2 additions and 2 deletions

View File

@ -252,8 +252,8 @@ void DistrhoUIchassis::onDisplay() {
if (sw1 & 0x04) fImgLedOn.drawAt(context, 238, 77); // 4'
if (sw1 & 0x08) fImgLedOn.drawAt(context, 427, 77); // pulse
if (sw1 & 0x10) fImgLedOn.drawAt(context, 465, 77); // saw
if ((sw1 & 0x60) == 0x40) fImgLedOn.drawAt(context, 604, 269); // chorus 1
if ((sw1 & 0x60) == 0x00) fImgLedOn.drawAt(context, 644, 269); // chorus 2
if ((sw1 & 0x60) == 0x40) fImgLedOn.drawAt(context, 612, 267); // chorus 1
if ((sw1 & 0x60) == 0x00) fImgLedOn.drawAt(context, 652, 267); // chorus 2
};
UI* createUI() {