"Unhandled exception at 0x76009617"
and it stops right here"
while(msge.message != WM_QUIT) { // If there are Window messages then process them. if(PeekMessage( &msge, 0, 0, 0, PM_REMOVE )) { TranslateMessage( &msge ); DispatchMessage( &msge ); } // Otherwise, do your stuff else {
it stops on the line: DispatchMessage( &msge );
What could cause that error?!