Skip to content

Commit

Permalink
Fixed FR_DrawChar3 called FR_DrawText instead of FR_DrawText3
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Jun 17, 2011
1 parent 54724e9 commit 3a99a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/gl_font.c
Expand Up @@ -931,7 +931,7 @@ static void textFragmentDrawer(const char* fragment, int x, int y, int alignFlag
void FR_DrawChar3(unsigned char ch, int x, int y, int alignFlags, short textFlags)
{
char str[2] = { ch, '\0' };
FR_DrawText(str, x, y, alignFlags, textFlags);
FR_DrawText3(str, x, y, alignFlags, textFlags);
}

/// \note Member of the Doomsday public API.
Expand Down

0 comments on commit 3a99a59

Please sign in to comment.