diff --git a/scene_opengl.cpp b/scene_opengl.cpp index b30678fe0f..49950fb16f 100644 --- a/scene_opengl.cpp +++ b/scene_opengl.cpp @@ -140,6 +140,8 @@ SceneOpenGL::SceneOpenGL( Workspace* ws ) glMatrixMode( GL_PROJECTION ); glLoadIdentity(); glOrtho( 0, displayWidth(), 0, displayHeight(), 0, 65535 ); + glMatrixMode( GL_MODELVIEW ); + glLoadIdentity(); checkGLError( "Init" ); kDebug() << "Root DB:" << root_db << ", TFP:" << tfp_mode << endl; }