Commit 91db9f8b authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Remove a redundant initialization in IWineD3DDeviceImpl_UpdateSurface().

parent 3af09096
......@@ -5159,10 +5159,10 @@ static HRESULT WINAPI IWineD3DDeviceImpl_UpdateSurface(IWineD3DDevice *iface,
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
const struct wined3d_format_desc *src_format;
const struct wined3d_format_desc *dst_format;
CONVERT_TYPES convert = NO_CONVERSION;
struct wined3d_context *context;
const unsigned char *data;
UINT update_w, update_h;
CONVERT_TYPES convert;
UINT src_w, src_h;
UINT dst_x, dst_y;
DWORD sampler;
......
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