Runtime Errors (win32) after compile

crash: The first execution gives a blank screen and the following assertion:

sylphis\trunk\runtime\src...\gutils.cpp
Line: 304

Expression: false

the code:

(html code tags don't seem to be working well, could be the semi-colons...)

void checkGLError(){
GLuint error;

error = glGetError();
if(error){
gcon.printf("OpenGL error : %s\n", getGLErrorString(error));
assert(false);
}
}

This is where the assert happened. Now what? What do I need to do to get a stack trace in VC++?

Thanks

I'm going to ask a stupid

I'm going to ask a stupid question, so kill me not for it. ;) Based on the numerous previously unencountered issues you're having, try checking out from SVN again. I was having the hardest time compiling Cinelerra (a Linux video editor) one time --strange errors everywhere that no one had heard of and such- until I realized that my checkout was corrupt.

Just a thought...