Skip to content
Snippets Groups Projects
Commit 69aa3e18 authored by Sam Moore's avatar Sam Moore
Browse files

Changed clear colour back to white

Why did I make it black????
parent 6066930d
No related merge requests found
......@@ -215,7 +215,7 @@ void Graphics::Initialise(const char * caption, int newWidth, int newHeight)
//COMES AFTER SETVIDEO MODE
glEnable(GL_TEXTURE_2D);
glClearColor(0,0,0,0); //Set clear colour (white) here
glClearColor(1,1,1,0); //Set clear colour (white) here
glViewport(0,0,screenWidth,screenHeight); //DOES matter
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment