Browse Source

Set the default background color to something recognisable.

legacy
Sam Hocevar sam 13 years ago
parent
commit
3191ca57bf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/video.cpp

+ 1
- 1
src/video.cpp View File

@@ -77,7 +77,7 @@ void Video::Setup(int width, int height)
#if defined HAVE_GL_2X || defined HAVE_GLES_1X #if defined HAVE_GL_2X || defined HAVE_GLES_1X
glShadeModel(GL_SMOOTH); glShadeModel(GL_SMOOTH);
#endif #endif
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClearColor(0.1f, 0.2f, 0.3f, 0.0f);
glClearDepthf(1.0); glClearDepthf(1.0);


#if defined HAVE_GL_2X || defined HAVE_GLES_1X #if defined HAVE_GL_2X || defined HAVE_GLES_1X


Loading…
Cancel
Save