I get errors while compileing stateing that an error ocurs in this particular part of code:
Code:
m_pDevD3D->SetVertexShader(D3DFVF_SIMPLEVERTEX);
where D3DFVF_SIMPLEVERTEX is defined like this:
Code:
#define D3DFVF_SIMPLEVERTEX (D3DFVF_XYZRHW|D3DFVF_DIFFUSE)
Which is, as I'm perciving it, strange because in a similiar project some guy is using exactly the same command and the compiler isn't throwing any error messages about incapabilities of casting from int to *pShader. So I'm guessing he's running it with other cmd line options but I don't really know.
Thanks in advance.