Commit 7dd4b9b7 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite: Don't use BOOL defined values for fields that are not BOOL.

parent ef73b788
......@@ -617,9 +617,9 @@ static inline void init_cluster_metrics(const struct dwrite_textlayout *layout,
metrics->isSoftHyphen = bp.isSoftHyphen;
}
else {
metrics->isWhitespace = FALSE;
metrics->isNewline = FALSE;
metrics->isSoftHyphen = FALSE;
metrics->isWhitespace = 0;
metrics->isNewline = 0;
metrics->isSoftHyphen = 0;
}
metrics->isRightToLeft = run->run.bidiLevel & 1;
metrics->padding = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment