Commit c8837b82 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

ddraw: DDRAW_dump_flags_nolf must not add LF.

parent 687af6b2
......@@ -640,7 +640,7 @@ static void DDRAW_dump_flags_nolf(DWORD flags, const flag_info* names,
for (i=0; i < num_names; i++)
if ((flags & names[i].val) || /* standard flag value */
((!flags) && (!names[i].val))) /* zero value only */
TRACE("%s\n", names[i].name);
TRACE("%s ", names[i].name);
}
static void DDRAW_dump_flags(DWORD flags, const flag_info* names, size_t num_names)
......
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