News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Reply

Started by BugCatcher, January 13, 2017, 12:45:44 AM

Previous topic - Next topic

BugCatcher

 If I comment out the line,   invoke      D3DMatrixPerspectiveFovLH,addr matProj,FLT4(0.785398163397448279),fpAspectRatio,FLT4(1.0),FLT4(1024.0), the debug build works fine. With it in, I get an unknown linker error LNK1000. The proto for this is in D3DMathSSe2.Inc .
   

jj2007

This is not part of the standard Masm32 installation, so it would be a good idea to post a link to where you got includes and libs. Also, one attached zip file is usually enough 8)

Siekmanski

Hi BugCatcher,

You may get this error if you mix standard header files and your own files.
Include the standard headers first, followed by your own header files.
Creative coders use backward thinking techniques as a strategy.

Siekmanski

Try this one, it's an empty project....
Creative coders use backward thinking techniques as a strategy.

BugCatcher