ui_draw_chevron: simplify calc size (#19616)

This commit is contained in:
Dean Lee
2020-12-30 06:08:49 +08:00
committed by GitHub
parent 123f36581f
commit 39bd8c7ce6
+1 -4
View File
@@ -73,10 +73,7 @@ static void draw_chevron(UIState *s, float x_in, float y_in, float sz,
return;
}
sz *= 30;
sz /= (x_in / 3 + 30);
if (sz > 30) sz = 30;
if (sz < 15) sz = 15;
sz = std::clamp((sz * 30) / (x_in / 3 + 30), 15.0f, 30.0f);
// glow
float g_xo = sz/5;