summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-07-22 10:32:07 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-07-22 10:32:47 +0200
commit9876be2200996c5005f45f87771e91c39d208796 (patch)
tree4133dc5bc103027d10d6d45f17c5c61816024950 /src
parent85e02a1955b4eaee9e300616b5af0e839735f6e7 (diff)
downloadmana-9876be2200996c5005f45f87771e91c39d208796.tar.gz
mana-9876be2200996c5005f45f87771e91c39d208796.tar.bz2
mana-9876be2200996c5005f45f87771e91c39d208796.tar.xz
mana-9876be2200996c5005f45f87771e91c39d208796.zip
Replaced font with DejaVu Serif Condensed
Looks nicer in the game in my opinion.
Diffstat (limited to 'src')
-rw-r--r--src/defaults.cpp4
-rw-r--r--src/gui/gui.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/defaults.cpp b/src/defaults.cpp
index 0dc8e3ed..e8a6e6e6 100644
--- a/src/defaults.cpp
+++ b/src/defaults.cpp
@@ -142,8 +142,8 @@ DefaultsData* getBrandingDefaults()
AddDEF(brandingData, "onlineServerList", "");
AddDEF(brandingData, "guiThemePath", "");
AddDEF(brandingData, "theme", "");
- AddDEF(brandingData, "font", "fonts/dejavusans.ttf");
- AddDEF(brandingData, "boldFont", "fonts/dejavusans-bold.ttf");
+ AddDEF(brandingData, "font", "fonts/DejaVuSerifCondensed.ttf");
+ AddDEF(brandingData, "boldFont", "fonts/DejaVuSerifCondensed-Bold.ttf");
AddDEF(brandingData, "monoFont", "fonts/dejavusans-mono.ttf");
return brandingData;
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index e6e61f64..1b600a3d 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -112,7 +112,7 @@ Gui::Gui(Graphics *graphics):
// Set global font
const int fontSize = config.getValue("fontSize", 11);
- std::string fontFile = branding.getValue("font", "fonts/dejavusans.ttf");
+ std::string fontFile = branding.getValue("font", "fonts/DejaVuSerifCondensed.ttf");
std::string path = resman->getPath(fontFile);
try
@@ -127,7 +127,7 @@ Gui::Gui(Graphics *graphics):
}
// Set bold font
- fontFile = branding.getValue("boldFont", "fonts/dejavusans-bold.ttf");
+ fontFile = branding.getValue("boldFont", "fonts/DejaVuSerifCondensed-Bold.ttf");
path = resman->getPath(fontFile);
try
{