From 7d93cab1eb1629b068858a68ac5e5840fe84a83a Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Tue, 10 May 2011 15:40:02 +0200 Subject: Added fog and implemented a simple skybox. --- video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video.cpp') diff --git a/video.cpp b/video.cpp index ab9b9d3..29b5bcf 100644 --- a/video.cpp +++ b/video.cpp @@ -11,7 +11,7 @@ void video::init() { surface = SDL_SetVideoMode(width, height, 32, SDL_OPENGL); - glClearColor(0, 0, 0, 0); + glClearColor(1, 1, 1, 0); glClearDepth(1); glDepthFunc(GL_LESS); glEnable(GL_DEPTH_TEST); -- cgit v1.2.3