diff --git a/es-core/src/resources/Font.cpp b/es-core/src/resources/Font.cpp index 4d5ff1c8f..e96bf3673 100644 --- a/es-core/src/resources/Font.cpp +++ b/es-core/src/resources/Font.cpp @@ -225,6 +225,7 @@ std::vector getFallbackFontPaths() // not really the correct location. (The application will crash if they are missing.) ResourceManager::getInstance()->getResourcePath(":/fonts/Akrobat-Regular.ttf"); ResourceManager::getInstance()->getResourcePath(":/fonts/Akrobat-SemiBold.ttf"); + ResourceManager::getInstance()->getResourcePath(":/fonts/Akrobat-Bold.ttf"); // Vera sans Unicode. fontPaths.push_back(ResourceManager::getInstance()->getResourcePath(":/fonts/DejaVuSans.ttf")); diff --git a/es-core/src/resources/Font.h b/es-core/src/resources/Font.h index 745285d14..30a24c872 100644 --- a/es-core/src/resources/Font.h +++ b/es-core/src/resources/Font.h @@ -33,6 +33,7 @@ class TextCache; #define FONT_PATH_LIGHT ":/fonts/Akrobat-Regular.ttf" #define FONT_PATH_REGULAR ":/fonts/Akrobat-SemiBold.ttf" +#define FONT_PATH_BOLD ":/fonts/Akrobat-Bold.ttf" enum Alignment { ALIGN_LEFT, diff --git a/resources/fonts/Akrobat-Bold.ttf b/resources/fonts/Akrobat-Bold.ttf new file mode 100644 index 000000000..c4d96640f Binary files /dev/null and b/resources/fonts/Akrobat-Bold.ttf differ