Changeset - r22504:7d2625ce5d43
[Not reviewed]
master
0 1 0
frosch - 7 years ago 2016-12-25 17:55:10
frosch@openttd.org
(svn r27711) -Doc: Fontsizes (adf88)
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/gfx_func.h
Show inline comments
 
@@ -161,16 +161,16 @@ void GetBroadestDigit(uint *front, uint 
 

	
 
int GetCharacterHeight(FontSize size);
 

	
 
/** Height of characters in the small (#FS_SMALL) font. */
 
/** Height of characters in the small (#FS_SMALL) font. @note Some characters may be oversized. */
 
#define FONT_HEIGHT_SMALL  (GetCharacterHeight(FS_SMALL))
 

	
 
/** Height of characters in the normal (#FS_NORMAL) font. */
 
/** Height of characters in the normal (#FS_NORMAL) font. @note Some characters may be oversized. */
 
#define FONT_HEIGHT_NORMAL (GetCharacterHeight(FS_NORMAL))
 

	
 
/** Height of characters in the large (#FS_LARGE) font. */
 
/** Height of characters in the large (#FS_LARGE) font. @note Some characters may be oversized. */
 
#define FONT_HEIGHT_LARGE  (GetCharacterHeight(FS_LARGE))
 

	
 
/** Height of characters in the large (#FS_MONO) font. */
 
/** Height of characters in the large (#FS_MONO) font. @note Some characters may be oversized. */
 
#define FONT_HEIGHT_MONO  (GetCharacterHeight(FS_MONO))
 

	
 
extern DrawPixelInfo *_cur_dpi;
0 comments (0 inline, 0 general)