Many problems with simple triangle game

Started by
10 comments, last by Shadow1234567890 21 years, 7 months ago
I think the error is the "else" before the DrawGlScene: remove it


  		else								// Not Time To Quit, Update Screen				{					DrawGLScene(XPosition, YPosition);					// Draw The Scene					SwapBuffers(hDC);				// Swap Buffers (Double Buffering)				}			}  


Check also the (keys[VK_?]) tests...
Advertisement
I think the error is the "else" before the DrawGlScene: remove it


  else // Not Time To Quit, Update Screen{  DrawGLScene(XPosition, YPosition); // Draw The Scene  SwapBuffers(hDC); // Swap Buffers (Double Buffering)}  

(damn tabs...
Check also the (keys[VK_?]) tests...

This topic is closed to new replies.

Advertisement