call reset succesfull

Started by
10 comments, last by Evil Steve 14 years, 3 months ago
Quote:Original post by SystemFiles
Were can i found the output file ?


What IDE are you using? Visual Studios? It is not a file. It should be part of your debug pan.

If you are using Visual Studios then hit ALT-2 or go to View->Output. When you run your program in Debug mode look at the Output tab which by default show be at the bottom.

Regards

Chad
Advertisement
See Here, and Here.

What is the exact error you get, and what line of code does the debugger break on?

Also, this is a very bad habit to get into:
if( hRet == D3D_OK )
Instead, use:
if( SUCCEEDED(hRet) )
As it is, you're checking 1 of the 2 billion possible success codes.

This topic is closed to new replies.

Advertisement