From 4ef1b8910f746c38e98ab271afe69eba3e73d4ad Mon Sep 17 00:00:00 2001 From: ffhspa <31392294+ffhspa@users.noreply.github.com> Date: Thu, 7 Jan 2021 11:15:59 +0100 Subject: [PATCH] remove double semicolon in paint.cc (#19684) old-commit-hash: dd9d8bba89c59164738e840609540ffc951d55e9 --- selfdrive/ui/paint.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/paint.cc b/selfdrive/ui/paint.cc index 854eaf907..f06203863 100644 --- a/selfdrive/ui/paint.cc +++ b/selfdrive/ui/paint.cc @@ -315,7 +315,7 @@ static void ui_draw_driver_view(UIState *s) { const float face_x = fxy_list[0]; const float face_y = fxy_list[1]; float fbox_x; - float fbox_y = box_y + (face_y + 0.5) * box_h - 0.5 * 0.6 * box_h / 2;; + float fbox_y = box_y + (face_y + 0.5) * box_h - 0.5 * 0.6 * box_h / 2; if (!scene->is_rhd) { fbox_x = valid_frame_x + (1 - (face_x + 0.5)) * (box_h / 2) - 0.5 * 0.6 * box_h / 2; } else {