user32: Use float literals for float operation.
This commit is contained in:
parent
faa14ba1b1
commit
8a718259d3
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue