From 69aa3e180883a3042446f4be3bfd6f727b0c8022 Mon Sep 17 00:00:00 2001
From: Sam Moore <matches@ucc.asn.au>
Date: Thu, 2 Feb 2012 18:26:05 +0800
Subject: [PATCH] Changed clear colour back to white

Why did I make it black????
---
 judge/manager/graphics.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/judge/manager/graphics.cpp b/judge/manager/graphics.cpp
index 2aed851..7cc22d0 100644
--- a/judge/manager/graphics.cpp
+++ b/judge/manager/graphics.cpp
@@ -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);
-- 
GitLab