From 95d31ad231800026e7b0a44ddda42c584dad5671 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 26 Aug 2013 22:09:45 -0400 Subject: Make the origin the top-left corner of the window again. --- 2d/window.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2d/window.scm') diff --git a/2d/window.scm b/2d/window.scm index de824d8..9c863f6 100644 --- a/2d/window.scm +++ b/2d/window.scm @@ -45,7 +45,7 @@ initializes OpenGL state." (gl-viewport 0 0 width height) (set-gl-matrix-mode (matrix-mode projection)) (gl-load-identity) - (gl-ortho 0 width 0 height -1 1) + (gl-ortho 0 width height 0 -1 1) (set-gl-matrix-mode (matrix-mode modelview)) (gl-load-identity) ;; Enable texturing and alpha blending -- cgit v1.2.3