Skip to content

Commit

Permalink
fix for UI now showing the APK
Browse files Browse the repository at this point in the history
  • Loading branch information
BogGyver committed Apr 28, 2020
1 parent c99b228 commit 86a1072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/ui/paint.cc
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ static void ui_draw_background(UIState *s) {
assert(bg_status < ARRAYSIZE(bg_colors));
const uint8_t *color = bg_colors[bg_status];

glClearColor(color[0]/256.0, color[1]/256.0, color[2]/256.0, 1.0);
glClearColor(color[0]/256.0, color[1]/256.0, color[2]/256.0, 0.0);
glClear(GL_STENCIL_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
}

Expand Down

0 comments on commit 86a1072

Please sign in to comment.