From c495ca924d8d04ded1216727266ba6c5285d46e4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Jan 2018 16:53:54 +0100 Subject: [PATCH] (MSVC 2010) Buildfix for x64 --- gfx/common/d3d_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/common/d3d_common.c b/gfx/common/d3d_common.c index b693c92b72..17164853e8 100644 --- a/gfx/common/d3d_common.c +++ b/gfx/common/d3d_common.c @@ -485,7 +485,7 @@ void d3d_vertex_declaration_free(void *data) #else { LPDIRECT3DVERTEXDECLARATION vertex_decl = - (LPDIRECDT3DVERTEXDECLARATION)data; + (LPDIRECT3DVERTEXDECLARATION)data; if (vertex_decl) vertex_decl->Release(); }