Weirdest problem I've ever met

Started by
1 comment, last by ji yan 21 years, 7 months ago
Hi: I was running my code and everything seems alright until the process gets to this line: g_pd3dDevice->Clear( 0, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(0,0,255), 1.0f, 0 ); It was not any kind of error that poped up. Instead, VC++6 gave me a hint on a message box : "User Breakpoint called from code at 0x77f7570". The result is the same as as if I have added a breakpoint somewhere where the program stops at, and when I continue executing, everything is normal except every time, the execution pauses at the same line of code and gives out the same message. Has anyone before ever encountered so weird problem like this one? I need help on it pliz.... Thanks for your hlp in advance
Advertisement
Is your g_pd3dDevice variable valid?
Theres probably a line
assert(this);
in the D3D source code.

HTH, Steve

Steve
DirectX Programmer
Soon to be the new Bill Gates
Member of the Unban Mindwipe Society (UMWS)
this can also occur if in control panel you''ve got "Break on Errors" checked.
again make sure your pointers are valid.


Gobsmacked - by Toby Murray

This topic is closed to new replies.

Advertisement