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 );