From 07f7827cec0b55fa9f1fc8617389f004a6701047 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 26 Nov 2004 19:47:26 +0000 Subject: [PATCH] typo --- stepmania/src/RageDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageDisplay.cpp b/stepmania/src/RageDisplay.cpp index 156ce400d8..5428572acc 100644 --- a/stepmania/src/RageDisplay.cpp +++ b/stepmania/src/RageDisplay.cpp @@ -628,7 +628,7 @@ RageMatrix RageDisplay::GetOrthoMatrix( float l, float r, float b, float t, floa RageMatrix RageDisplay::GetFrustumMatrix( float l, float r, float b, float t, float zn, float zf ) { - // glFrustrum + // glFrustum float A = (r+l) / (r-l); float B = (t+b) / (t-b); float C = -1 * (zf+zn) / (zf-zn);