user32: Use float literals for float operation.

This commit is contained in:
Thomas Faber 2015-09-07 10:14:02 +02:00 committed by Alexandre Julliard
parent faa14ba1b1
commit 8a718259d3
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ static void EDIT_BuildLineDefs_ML(EDITSTATE *es, INT istart, INT iend, INT delta
prev = current_line->net_length - 1;
w = current_line->net_length;
d = (float)current_line->width/(float)fw;
if (d > 1.2) d -= 0.2;
if (d > 1.2f) d -= 0.2f;
next = prev/d;
if (next >= prev) next = prev-1;
do {