d3dx9: Print a real pixel format in a FIXME message.

This commit is contained in:
Józef Kucia 2012-05-11 13:18:43 +02:00 committed by Alexandre Julliard
parent a90fcbff00
commit 685be77251
1 changed files with 1 additions and 1 deletions

View File

@ -1541,7 +1541,7 @@ HRESULT WINAPI D3DXSaveSurfaceToFileW(const WCHAR *dst_filename, D3DXIMAGE_FILEF
if (src_format_desc->format == D3DFMT_UNKNOWN || dst_format_desc->format == D3DFMT_UNKNOWN)
{
FIXME("Unsupported pixel format conversion %#x -> %#x\n",
src_format_desc->format, dst_format_desc->format);
src_surface_desc.Format, d3d_pixel_format);
hr = E_NOTIMPL;
goto cleanup;
}