Commit de006dbc authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Escape shader comments.

parent eefb45f3
...@@ -1231,7 +1231,7 @@ static void shader_trace_init(const struct wined3d_shader_frontend *fe, void *fe ...@@ -1231,7 +1231,7 @@ static void shader_trace_init(const struct wined3d_shader_frontend *fe, void *fe
fe->shader_read_comment(&ptr, &comment, &comment_size); fe->shader_read_comment(&ptr, &comment, &comment_size);
if (comment) if (comment)
{ {
TRACE("//%s\n", comment); TRACE("// %s\n", debugstr_an(comment, comment_size));
continue; continue;
} }
......
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