Increase default font size by 1
authorJames Stevenson <everamzah@gmail.com>
Thu, 15 Sep 2016 15:53:17 +0000 (11:53 -0400)
committerest31 <MTest31@outlook.com>
Wed, 21 Sep 2016 06:04:11 +0000 (08:04 +0200)
builtin/settingtypes.txt
minetest.conf.example
src/constants.h
src/defaultsettings.cpp

index 4622a721788d37d19eaf5559dd1dd7e859d140af..15fab0f30e1d60e89f4127c0663b1b7c68301acb 100644 (file)
@@ -561,13 +561,13 @@ freetype (Freetype fonts) bool true
 #    Path to TrueTypeFont or bitmap.
 font_path (Font path) path fonts/liberationsans.ttf
 
-font_size (Font size) int 15
+font_size (Font size) int 16
 
 #    Font shadow offset, if 0 then shadow will not be drawn.
 font_shadow (Font shadow) int 1
 
 #    Font shadow alpha (opaqueness, between 0 and 255).
-font_shadow_alpha (Font shadow alpha) int 128 0 255
+font_shadow_alpha (Font shadow alpha) int 127 0 255
 
 mono_font_path (Monospace font path) path fonts/liberationmono.ttf
 
index 3d9b7730626c7770cf1bd75b7a01121491577211..bedc8c579a1319abf56160026aacb3c47f5fedea 100644 (file)
 # font_path = fonts/liberationsans.ttf
 
 #    type: int
-# font_size = 15
+# font_size = 16
 
 #    Font shadow offset, if 0 then shadow will not be drawn.
 #    type: int
 
 #    Font shadow alpha (opaqueness, between 0 and 255).
 #    type: int min: 0 max: 255
-# font_shadow_alpha = 128
+# font_shadow_alpha = 127
 
 #    type: path
 # mono_font_path = fonts/liberationmono.ttf
index b606fc4fa114282da0894f17f01a075d6bc774db..55ae9daf3a0cecac94901fd9d19edc322399c84b 100644 (file)
@@ -112,7 +112,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #if defined(_WIN32)
        #define TTF_DEFAULT_FONT_SIZE   (18)
 #else
-       #define TTF_DEFAULT_FONT_SIZE   (15)
+       #define TTF_DEFAULT_FONT_SIZE   (16)
 #endif
 #define DEFAULT_FONT_SIZE       (10)
 
index 7c6f7ef3d2bfbaf6b60e46281c494dd5c15c9573..4520bac2f5cbaaa2b3ab72c6b1a4973307e5f4dd 100644 (file)
@@ -213,7 +213,7 @@ void set_default_settings(Settings *settings)
        settings->setDefault("freetype", "true");
        settings->setDefault("font_path", porting::getDataPath("fonts" DIR_DELIM "liberationsans.ttf"));
        settings->setDefault("font_shadow", "1");
-       settings->setDefault("font_shadow_alpha", "128");
+       settings->setDefault("font_shadow_alpha", "127");
        settings->setDefault("mono_font_path", porting::getDataPath("fonts" DIR_DELIM "liberationmono.ttf"));
        settings->setDefault("fallback_font_path", porting::getDataPath("fonts" DIR_DELIM "DroidSansFallbackFull.ttf"));