Skip to content

Commit

Permalink
Fixed verbose log message in bitmapfont.c prepareFont which would att…
Browse files Browse the repository at this point in the history
…empt to print a ddstring_t as if it were a c-string.
  • Loading branch information
danij-deng committed Feb 21, 2011
1 parent a5e23af commit fd6441d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/bitmapfont.c
Expand Up @@ -263,7 +263,7 @@ static void prepareFont(bitmapfont_t* font)
// Upload the texture.
if(!novideo && !isDedicated)
{
VERBOSE2( Con_Printf("Uploading GL texture for font '%s' ...\n", font->_name) );
VERBOSE2( Con_Printf("Uploading GL texture for font '%s' ...\n", Str_Text(&font->_name)) );

font->_tex = GL_NewTextureWithParams2(DGL_RGBA, font->_texWidth,
font->_texHeight, image, 0, GL_LINEAR, GL_NEAREST, 0 /* no AF */,
Expand Down

0 comments on commit fd6441d

Please sign in to comment.