From 4051a09eb2b06556eff77d5faaaaae7fe562e7b4 Mon Sep 17 00:00:00 2001 From: Alexander Dorofeyev Date: Sat, 8 Dec 2007 18:00:28 -0800 Subject: [PATCH] ddraw: Fix wrong initialization order in IDirect3DDevice vtable. --- dlls/ddraw/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ddraw/device.c b/dlls/ddraw/device.c index 53ef2f176b3..fa471ef70c8 100644 --- a/dlls/ddraw/device.c +++ b/dlls/ddraw/device.c @@ -5477,8 +5477,8 @@ const IDirect3DDeviceVtbl IDirect3DDevice1_Vtbl = IDirect3DDeviceImpl_1_SetMatrix, IDirect3DDeviceImpl_1_GetMatrix, IDirect3DDeviceImpl_1_DeleteMatrix, - Thunk_IDirect3DDeviceImpl_1_EndScene, Thunk_IDirect3DDeviceImpl_1_BeginScene, + Thunk_IDirect3DDeviceImpl_1_EndScene, Thunk_IDirect3DDeviceImpl_1_GetDirect3D }; -- 2.11.4.GIT