push out far clip plane to 200

This commit is contained in:
Brian 2008-01-28 12:41:47 -07:00
parent e7007c6fb0
commit f09b2382e9
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ reshape(int width, int height)
glViewport(0, 0, (GLint) width, (GLint) height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
glFrustum(-1.0, 1.0, -h, h, 5.0, 200.0);
glMatrixMode(GL_MODELVIEW);
}