From 7bb4c6c2fb3a454c0a7dce343c0722db2df1534a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 3 Sep 2003 22:52:15 +0000 Subject: [PATCH] Default to 16bpp for fonts, unless the 32bpp hint is used. --- stepmania/src/Font.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/Font.cpp b/stepmania/src/Font.cpp index 3c1db728db..d4c8fb8f0e 100644 --- a/stepmania/src/Font.cpp +++ b/stepmania/src/Font.cpp @@ -39,8 +39,7 @@ void FontPage::Load( FontPageSettings cfg ) // load texture RageTextureID ID(m_sTexturePath); - // Don't stretch because it causes funky pixel/texel alignment. -// ID.bStretch = true; + ID.iColorDepth = 16; m_pTexture = TEXTUREMAN->LoadTexture( ID ); ASSERT( m_pTexture != NULL );