d3dx9: WARN when the file doesn't exist in D3DXCreateTextureFromFileExW().
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ceabad19b8
commit
81ababa864
|
@ -773,7 +773,10 @@ HRESULT WINAPI D3DXCreateTextureFromFileExW(struct IDirect3DDevice9 *device, con
|
|||
|
||||
hr = map_view_of_file(srcfile, &buffer, &size);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
WARN("Failed to open file.\n");
|
||||
return D3DXERR_INVALIDDATA;
|
||||
}
|
||||
|
||||
hr = D3DXCreateTextureFromFileInMemoryEx(device, buffer, size, width, height, miplevels, usage, format, pool,
|
||||
filter, mipfilter, colorkey, srcinfo, palette, texture);
|
||||
|
|
Loading…
Reference in New Issue