Skip to content

Commit

Permalink
Fixed: FR_TextHeight was used to calculate the height of the busy mod…
Browse files Browse the repository at this point in the history
…e font

  even though it factors in properties like leading. This value is used to
  draw the busy log line-by-line, so instead call FR_SingleLineHeight
  • Loading branch information
danij-deng committed Jul 16, 2011
1 parent 3d5dde5 commit a48be67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/con_busy.c
Expand Up @@ -285,7 +285,7 @@ static void Con_BusyLoadTextures(void)
busyFont = Fonts_ToIndex(font);
FR_SetFont(busyFont);
FR_LoadDefaultAttrib();
busyFontHgt = FR_TextHeight("A");
busyFontHgt = FR_SingleLineHeight("Busy");
}
}
}
Expand Down

0 comments on commit a48be67

Please sign in to comment.