diff options
author | sfan5 <sfan5@live.de> | 2015-01-10 18:59:43 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2015-01-10 18:59:43 +0100 |
commit | 3b16103ca69dc0182f5adbd63c32ef14d886e3f8 (patch) | |
tree | 9a8e0d1960dbd83259862fdc647881c5f9608acc /src/constants.h | |
parent | 8089d89a5129d170e5d36c16c3897f252a85d5c2 (diff) | |
download | minetest-3b16103ca69dc0182f5adbd63c32ef14d886e3f8.tar.gz minetest-3b16103ca69dc0182f5adbd63c32ef14d886e3f8.tar.bz2 minetest-3b16103ca69dc0182f5adbd63c32ef14d886e3f8.zip |
Change default font sizes to 14(freetype) and 10(non-freetype)
Diffstat (limited to 'src/constants.h')
-rw-r--r-- | src/constants.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/constants.h b/src/constants.h index 2da4a34e5..6969b4d81 100644 --- a/src/constants.h +++ b/src/constants.h @@ -95,11 +95,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #define PLAYER_FILE_ALTERNATE_TRIES 1000 /* - * GUI related things - */ -#define LEGACY_SCALING (2./3.) -#define TTF_DEFAULT_FONT_SIZE (12.0 / LEGACY_SCALING) -#define DEFAULT_FONT_SIZE (14) + GUI related things +*/ +#define TTF_DEFAULT_FONT_SIZE (14) +#define DEFAULT_FONT_SIZE (10) #endif |