Commit fc128f66 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

d3d10core: Enable compilation with long types.

parent 2e0a5625
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = d3d10core.dll
IMPORTLIB = d3d10core
IMPORTS = d3d11 dxgi
......
......@@ -51,7 +51,7 @@ HRESULT WINAPI D3D10CoreCreateDevice(IDXGIFactory *factory, IDXGIAdapter *adapte
FreeLibrary(d3d11);
if (FAILED(hr))
{
WARN("Failed to create device, hr %#x.\n", hr);
WARN("Failed to create device, hr %#lx.\n", hr);
return hr;
}
......
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