tinyhead: change the side screen's colour, so it blends in with the rest of the face

pull/3635/head
michele 2024-11-01 17:06:33 +01:00
parent 8903215f3b
commit 71f3f69304
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ exports.drawFace = function(scale, eyesNum, mouthNum, peek, offset) {
// Draw face
let xOffset = (g.getWidth() - (exports.faceW * scale)) / 2;
let yOffset = (offset ? offset : 0) + ((g.getHeight() - (exports.faceH * scale)) / 2);
g.setBgColor(0, 0, 0);
g.setBgColor(settings.hairColour);
g.clearRect(Bangle.appRect);
g.setClipRect(Bangle.appRect.x, Bangle.appRect.y, Bangle.appRect.x2, Bangle.appRect.y2);