Commit 13a279ef authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3d10core: Fix spelling of 'unknown'.

parent 7c2f5f06
......@@ -82,7 +82,7 @@ static HRESULT WINAPI layer_create(enum dxgi_device_layer_id id, void **layer_ba
object = (struct d3d10_device *)*layer_base;
object->vtbl = &d3d10_device_vtbl;
object->inner_unknown_vtbl = &d3d10_device_inner_unkown_vtbl;
object->inner_unknown_vtbl = &d3d10_device_inner_unknown_vtbl;
object->refcount = 1;
object->outer_unknown = device_object;
......
......@@ -34,7 +34,7 @@ const char *debug_dxgi_format(DXGI_FORMAT format);
/* IDirect3D10Device */
extern const struct ID3D10DeviceVtbl d3d10_device_vtbl;
extern const struct IUnknownVtbl d3d10_device_inner_unkown_vtbl;
extern const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl;
struct d3d10_device
{
const struct ID3D10DeviceVtbl *vtbl;
......
......@@ -876,7 +876,7 @@ const struct ID3D10DeviceVtbl d3d10_device_vtbl =
d3d10_device_GetTextFilterSize,
};
const struct IUnknownVtbl d3d10_device_inner_unkown_vtbl =
const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl =
{
/* IUnknown methods */
d3d10_device_inner_QueryInterface,
......
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