Browse Source

d3d9_fmt: log some device values as hexadecimal

it's more readable this way

(cherry picked from commit 30b8c2f7e2)
pull/135/head
Steve Lhomme 8 years ago
parent
commit
781447e4e0
  1. 2
      modules/video_chroma/d3d9_fmt.c

2
modules/video_chroma/d3d9_fmt.c

@ -98,7 +98,7 @@ HRESULT D3D9_CreateDevice(vlc_object_t *o, d3d9_handle_t *hd3d, HWND hwnd,
if (FAILED(IDirect3D9_GetAdapterIdentifier(hd3d->obj, AdapterToUse,0, &d3dai))) {
msg_Warn(o, "IDirect3D9_GetAdapterIdentifier failed");
} else {
msg_Dbg(o, "Direct3d9 Device: %s %lu %lu %lu", d3dai.Description,
msg_Dbg(o, "Direct3d9 Device: %s %lx %lx %lx", d3dai.Description,
d3dai.VendorId, d3dai.DeviceId, d3dai.Revision );
}

Loading…
Cancel
Save