From 41e8eb95882abe806e22b182768d2dd9361953d2 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Sun, 9 Oct 2011 14:58:21 +0800 Subject: [PATCH] --- scene.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene.c b/scene.c index a2f1514..0219621 100644 --- a/scene.c +++ b/scene.c @@ -464,7 +464,7 @@ void makeMenu() { * @param h New height */ void windowReshape(int w, int h) { - GLfloat aspect = (GLfloat) h / (GLfloat) w; + GLdouble aspect = (GLfloat) h / (GLfloat) w; GLdouble n = 10.0; glViewport(0, 0, w, h); -- 2.20.1