mirror of
https://github.com/libretro/RetroArch
synced 2025-04-04 13:20:15 +00:00
Buildfix for HAVE_D3D8
This commit is contained in:
parent
bf1f201e5a
commit
f6cb15f410
@ -214,15 +214,16 @@ void d3d_surface_free(void *data)
|
|||||||
|
|
||||||
void d3d_vertex_declaration_free(void *data)
|
void d3d_vertex_declaration_free(void *data)
|
||||||
{
|
{
|
||||||
LPDIRECT3DVERTEXDECLARATION vertex_decl = (LPDIRECT3DVERTEXDECLARATION)data;
|
if (!data)
|
||||||
if (!vertex_decl)
|
|
||||||
return;
|
return;
|
||||||
#if defined(HAVE_D3D8)
|
#if defined(HAVE_D3D8)
|
||||||
/* empty */
|
/* empty */
|
||||||
#elif defined(HAVE_D3D9) && !defined(__cplusplus)
|
#elif defined(HAVE_D3D9) && !defined(__cplusplus)
|
||||||
IDirect3DVertexDeclaration9_Release(vertex_decl);
|
IDirect3DVertexDeclaration9_Release((LPDIRECT3DVERTEXDECLARATION)data);
|
||||||
#else
|
#else
|
||||||
vertex_decl->Release();
|
LPDIRECT3DVERTEXDECLARATION vertex_decl = (LPDIRECDT3DVERTEXDECLARATION)data;
|
||||||
|
if (vertex_decl)
|
||||||
|
vertex_decl->Release();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user