Cleanup: warning for 'float' to 'int' with MSVC

This commit is contained in:
Campbell Barton 2022-04-13 14:22:58 +10:00
parent 7d3db7a3ae
commit 02de1bff1e
Notes: blender-bot 2023-02-13 15:43:33 +01:00
Referenced by issue #97298, Bevel has problems determining the right direction (vertex group limit method)
1 changed files with 4 additions and 4 deletions

View File

@ -1210,10 +1210,10 @@ static void blf_font_fill(FontBLF *font)
font->color[2] = 0;
font->color[3] = 255;
font->clip_rec.xmin = 0.0f;
font->clip_rec.xmax = 0.0f;
font->clip_rec.ymin = 0.0f;
font->clip_rec.ymax = 0.0f;
font->clip_rec.xmin = 0;
font->clip_rec.xmax = 0;
font->clip_rec.ymin = 0;
font->clip_rec.ymax = 0;
font->flags = 0;
font->dpi = 0;
font->size = 0;