Skip to content

Commit 8cb31d0

Browse files
committed
Change color in headplot from black to blue
1 parent a098bd7 commit 8cb31d0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

OpenBCI_GUI/W_HeadPlot.pde

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ class HeadPlot {
324324
//initialize the image
325325
for (int Iy=0; Iy < headImage.height; Iy++) {
326326
for (int Ix = 0; Ix < headImage.width; Ix++) {
327-
headImage.set(Ix, Iy, color(0, 0, 0, 0));
327+
headImage.set(Ix, Iy, OPENBCI_DARKBLUE);
328328
}
329329
}
330330

@@ -992,7 +992,7 @@ class HeadPlot {
992992
headImage.set(Ix, Iy, calcPixelColor(Ix, Iy));
993993
} else { //negative values are outside of the head
994994
//pixel is outside the head. set to black.
995-
headImage.set(Ix, Iy, color(0, 0, 0, 0));
995+
headImage.set(Ix, Iy, OPENBCI_DARKBLUE);
996996
}
997997
}
998998
}
@@ -1007,7 +1007,7 @@ class HeadPlot {
10071007
headImage.set(Ix, Iy, calcPixelColor(headVoltage[Ix][Iy]));
10081008
} else { //negative values are outside of the head
10091009
//pixel is outside the head. set to black.
1010-
headImage.set(Ix, Iy, color(0, 0, 0, 0));
1010+
headImage.set(Ix, Iy, OPENBCI_DARKBLUE);
10111011
}
10121012
}
10131013
}

0 commit comments

Comments
 (0)