Skip to content

Commit 2c21df6

Browse files
committed
Underglow fix
1 parent 6ca1086 commit 2c21df6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Applications/Note/Note.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,14 @@ void Note::PlayView() {
266266
break;
267267
}
268268

269-
NotePad notePad1(padSize, &runtimes[(1 == activeConfig) ? 1 : 0]);
269+
NotePad notePad1(padSize, &runtimes[(0 == activeConfig) ? 0 : 1]);
270270
playView.AddUIComponent(notePad1, Point(0, 0));
271271

272-
UnderglowLight underglow1(underglowSize, notePadConfigs[(1 == activeConfig) ? 1 : 0].color);
272+
UnderglowLight underglow1(underglowSize, notePadConfigs[(0 == activeConfig) ? 0 : 1].color);
273273
playView.AddUIComponent(underglow1, Point(-1, -1));
274274

275275
NotePad notePad2(padSize, &runtimes[(1 == activeConfig) ? 0 : 1]);
276-
UnderglowLight underglow2(underglowSize, notePadConfigs[(0 == activeConfig) ? 0 : 1].color);
276+
UnderglowLight underglow2(underglowSize, notePadConfigs[(1 == activeConfig) ? 0 : 1].color);
277277

278278
if (splitView == VERT_SPLIT) {
279279
playView.AddUIComponent(notePad2, Point(4, 0));

0 commit comments

Comments
 (0)