summaryrefslogtreecommitdiff
path: root/src/gfx_func.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2016-12-25 17:55:10 +0000
committerfrosch <frosch@openttd.org>2016-12-25 17:55:10 +0000
commiteae9234c07d1d45feb4468c239dd6d0229e5a7f8 (patch)
treef96672d66441db30e7651e0d831eba9bc81ef2f1 /src/gfx_func.h
parent6f8241d8e9d8cd54a7d41beda983ded831de8176 (diff)
downloadopenttd-eae9234c07d1d45feb4468c239dd6d0229e5a7f8.tar.xz
(svn r27711) -Doc: Fontsizes (adf88)
Diffstat (limited to 'src/gfx_func.h')
-rw-r--r--src/gfx_func.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gfx_func.h b/src/gfx_func.h
index 973e15f2b..566f91b2d 100644
--- a/src/gfx_func.h
+++ b/src/gfx_func.h
@@ -161,16 +161,16 @@ void GetBroadestDigit(uint *front, uint *next, FontSize size = FS_NORMAL);
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;