diff --git a/build/android/app/build.gradle b/build/android/app/build.gradle
index 1c4b83e07..59fcad136 100644
--- a/build/android/app/build.gradle
+++ b/build/android/app/build.gradle
@@ -78,7 +78,7 @@ task prepareAssetsFiles() {
from "../native/deps/Android/Irrlicht/shaders" into "${assetsFolder}/client/shaders/Irrlicht"
}
copy {
- from "${projRoot}/fonts/Retron2000.ttf" into "${assetsFolder}/fonts"
+ from "${projRoot}/fonts/MultiCraftFont.ttf" into "${assetsFolder}/fonts"
}
fileTree("${projRoot}/po").include("**/*.po").forEach { poFile ->
def moPath = "${assetsFolder}/locale/${poFile.parentFile.name}/LC_MESSAGES/"
diff --git a/build/android/app/src/main/res/font/multicraftfont.ttf b/build/android/app/src/main/res/font/multicraftfont.ttf
new file mode 100644
index 000000000..e9ab48910
Binary files /dev/null and b/build/android/app/src/main/res/font/multicraftfont.ttf differ
diff --git a/build/android/app/src/main/res/font/retron2000.ttf b/build/android/app/src/main/res/font/retron2000.ttf
deleted file mode 100644
index f30c7e1b7..000000000
Binary files a/build/android/app/src/main/res/font/retron2000.ttf and /dev/null differ
diff --git a/build/android/app/src/main/res/values/styles.xml b/build/android/app/src/main/res/values/styles.xml
index 296b3044b..65ccfde50 100644
--- a/build/android/app/src/main/res/values/styles.xml
+++ b/build/android/app/src/main/res/values/styles.xml
@@ -6,7 +6,7 @@
- @drawable/bg
- true
- shortEdges
- - @font/retron2000
+ - @font/multicraftfont
diff --git a/fonts/1001fonts-retron2000-eula.txt b/fonts/1001fonts-retron2000-eula.txt
deleted file mode 100644
index 65bdd15dd..000000000
--- a/fonts/1001fonts-retron2000-eula.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-1001Fonts Free For Commercial Use License (FFC)
-
-Preamble
-In this license, 'Retron2000' refers to the given .zip file, which may contain one or numerous fonts. These fonts can be of any type (.ttf, .otf, ...) and together they form a 'font family' or in short a 'typeface'.
-
-1. Copyright
-Retron2000 is the intellectual property of its respective author, provided it is original, and is protected by copyright laws in many parts of the world.
-
-2. Usage
-Retron2000 may be downloaded and used free of charge for both personal and commercial use, as long as the usage is not racist or illegal. Personal use refers to all usage that does not generate financial income in a business manner, for instance:
-
- - personal scrapbooking for yourself
- - recreational websites and blogs for friends and family
- - prints such as flyers, posters, t-shirts for churches, charities, and non-profit organizations
-
-Commercial use refers to usage in a business environment, including:
-
- - business cards, logos, advertising, websites, mobile apps for companies
- - t-shirts, books, apparel that will be sold for money
- - flyers, posters for events that charge admission
- - freelance graphic design work
- - anything that will generate direct or indirect income
-
-3. Modification
-Retron2000 may not be modified, altered, adapted or built upon without written permission by its respective author. This pertains all files within the downloadable font zip-file.
-
-4. Conversion
-Retron2000 may be converted to other formats such as WOFF, SVG or EOT webfonts, as long as the font is not modified in any other way, such as changing names or altering individual glyphs.
-
-5. Distribution
-While Retron2000 may freely be copied and passed along to other individuals for private use as its original downloadable zip-file, it may not be sold or published without written permission by its respective author.
-
-6. Embedding
-Retron2000 may be embedded into an application such as a web- or mobile app, independant of the number of the application users, as long as the application does not distribute Retron2000, such as offering it as a download.
-
-7. Disclaimer
-Retron2000 is offered 'as is' without any warranty. 1001fonts.com and the respective author of Retron2000 shall not be liable for any damage derived from using this typeface. By using Retron2000 you agree to the terms of this license.
diff --git a/fonts/MultiCraftFont.ttf b/fonts/MultiCraftFont.ttf
new file mode 100644
index 000000000..e9ab48910
Binary files /dev/null and b/fonts/MultiCraftFont.ttf differ
diff --git a/fonts/Retron2000.ttf b/fonts/Retron2000.ttf
deleted file mode 100644
index f30c7e1b7..000000000
Binary files a/fonts/Retron2000.ttf and /dev/null differ
diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp
index c17dad322..f42d93130 100644
--- a/src/defaultsettings.cpp
+++ b/src/defaultsettings.cpp
@@ -307,10 +307,10 @@ void set_default_settings()
settings->setDefault("font_path_bold", porting::getDataPath("fonts" DIR_DELIM "Arimo-Bold.ttf"));
settings->setDefault("font_path_bold_italic", porting::getDataPath("fonts" DIR_DELIM "Arimo-BoldItalic.ttf"));
#else
- settings->setDefault("font_path", porting::getDataPath("fonts" DIR_DELIM "Retron2000.ttf"));
- settings->setDefault("font_path_italic", porting::getDataPath("fonts" DIR_DELIM "Retron2000.ttf"));
- settings->setDefault("font_path_bold", porting::getDataPath("fonts" DIR_DELIM "Retron2000.ttf"));
- settings->setDefault("font_path_bold_italic", porting::getDataPath("fonts" DIR_DELIM "Retron2000.ttf"));
+ settings->setDefault("font_path", porting::getDataPath("fonts" DIR_DELIM "MultiCraftFont.ttf"));
+ settings->setDefault("font_path_italic", porting::getDataPath("fonts" DIR_DELIM "MultiCraftFont.ttf"));
+ settings->setDefault("font_path_bold", porting::getDataPath("fonts" DIR_DELIM "MultiCraftFont.ttf"));
+ settings->setDefault("font_path_bold_italic", porting::getDataPath("fonts" DIR_DELIM "MultiCraftFont.ttf"));
#endif
settings->setDefault("font_bold", "false");
settings->setDefault("font_italic", "false");
@@ -674,11 +674,13 @@ void set_default_settings()
settings->setDefault("hud_scaling", "0.55");
settings->setDefault("mouse_sensitivity", "0.33");
settings->setDefault("font_size", font_small);
+ settings->setDefault("fallback_font_size", font_small);
} else if SDVersion4and7Inch {
// 4.7" iPhone
settings->setDefault("hud_scaling", "0.6");
settings->setDefault("mouse_sensitivity", "0.27");
settings->setDefault("font_size", font_small);
+ settings->setDefault("fallback_font_size", font_small);
} else if SDVersion5and5Inch {
// 5.5" iPhone Plus
settings->setDefault("hud_scaling", "0.65");