Commit 32f79acc authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

d3d10core: dxgi_format_from_wined3dformat should return DXGI_FORMAT enum values in all cases.

parent 2587f702
......@@ -242,7 +242,7 @@ DXGI_FORMAT dxgi_format_from_wined3dformat(enum wined3d_format_id format)
case WINED3DFMT_B8G8R8X8_UNORM: return DXGI_FORMAT_B8G8R8X8_UNORM;
default:
FIXME("Unhandled wined3d format %#x.\n", format);
return WINED3DFMT_UNKNOWN;
return DXGI_FORMAT_UNKNOWN;
}
}
......
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