remove double semicolons (#19681)

old-commit-hash: fd4ddb769a7b321ada3105ad2511c54ab08b1f63
This commit is contained in:
Dean Lee
2021-01-07 12:23:33 +08:00
committed by GitHub
parent 0d895ad82a
commit 4a137a3f41

View File

@@ -21,7 +21,7 @@ static void ui_draw_sidebar_settings_button(UIState *s) {
}
static void ui_draw_sidebar_home_button(UIState *s) {
const float alpha = s->active_app == cereal::UiLayoutState::App::HOME ? 1.0f : 0.65f;;
const float alpha = s->active_app == cereal::UiLayoutState::App::HOME ? 1.0f : 0.65f;
ui_draw_image(s->vg, home_btn, s->img_button_home, alpha);
}