From 72c25d79d998c3b8d4e9ff259830d70ef26af6a4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 16 Mar 2006 00:50:47 +0000 Subject: [PATCH] now this seems backwards. Something else is funky ... --- stepmania/src/RageDisplay_D3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageDisplay_D3D.cpp b/stepmania/src/RageDisplay_D3D.cpp index 89208e0e08..849acf3f6f 100644 --- a/stepmania/src/RageDisplay_D3D.cpp +++ b/stepmania/src/RageDisplay_D3D.cpp @@ -786,7 +786,7 @@ void RageDisplay_D3D::SendCurrentMatrices() /* Convert to OpenGL-style "pixel-centered" coords */ RageMatrix m; - RageMatrixTranslation( &m, +0.5f, +0.5f, 0 ); + RageMatrixTranslation( &m, -0.5f, -0.5f, 0 ); RageMatrixMultiply( &m, &m, GetWorldTop() ); g_pd3dDevice->SetTransform( D3DTS_WORLD, (D3DMATRIX*)&m );