Alexander Dorofeyev : ddraw: Fix wrong initialization order in IDirect3DDevice vtable.

Alexandre Julliard julliard at winehq.org
Sat Dec 8 13:43:39 CST 2007


Module: wine
Branch: master
Commit: 4051a09eb2b06556eff77d5faaaaae7fe562e7b4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4051a09eb2b06556eff77d5faaaaae7fe562e7b4

Author: Alexander Dorofeyev <alexd4 at inbox.lv>
Date:   Sat Dec  8 18:00:28 2007 -0800

ddraw: Fix wrong initialization order in IDirect3DDevice vtable.

---

 dlls/ddraw/device.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ddraw/device.c b/dlls/ddraw/device.c
index 53ef2f1..fa471ef 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
 };
 




More information about the wine-cvs mailing list