From 4dd5f4cc0973a8c7c6df876d228ff6ccd35e2ce3 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 15 Jun 2003 06:48:32 +0000 Subject: [PATCH] Don't stretch font textures --- stepmania/src/Font.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Font.cpp b/stepmania/src/Font.cpp index f1ba854640..d6f811b96f 100644 --- a/stepmania/src/Font.cpp +++ b/stepmania/src/Font.cpp @@ -39,7 +39,8 @@ void FontPage::Load( FontPageSettings cfg ) // load texture RageTextureID ID(m_sTexturePath); - ID.bStretch = true; + // Don't stretch because it causes funky pixel/texel alignment. +// ID.bStretch = true; m_pTexture = TEXTUREMAN->LoadTexture( ID ); ASSERT( m_pTexture != NULL );