summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-02-11 17:12:00 +0100
committerIra Rice <irarice@gmail.com>2009-02-11 10:12:36 -0700
commit3bf163c923526e545d9738d0047b5de352a85a7c (patch)
tree7a6bd6c8645f6f0853d2485b52ccbcb51391e603 /src/gui/gui.cpp
parent1ea7d80aff0961e6f55ee467b8cbe26d146828f8 (diff)
downloadmana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.gz
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.bz2
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.xz
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.zip
Shut up some compiler warnings.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r--src/gui/gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index f8901119..4b5c375d 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -111,7 +111,7 @@ Gui::Gui(Graphics *graphics):
std::string path = resman->getPath("fonts/dejavusans.ttf");
try
{
- const int fontSize = config.getValue("fontSize", 11);
+ const int fontSize = (int)config.getValue("fontSize", 11);
mGuiFont = new TrueTypeFont(path, fontSize);
}
catch (gcn::Exception e)
@@ -124,7 +124,7 @@ Gui::Gui(Graphics *graphics):
path = resman->getPath("fonts/dejavusans-bold.ttf");
try
{
- const int fontSize = config.getValue("fontSize", 11);
+ const int fontSize = (int)config.getValue("fontSize", 11);
boldFont = new TrueTypeFont(path, fontSize);
}
catch (gcn::Exception e)