diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-11 17:12:00 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-11 10:12:36 -0700 |
commit | 3bf163c923526e545d9738d0047b5de352a85a7c (patch) | |
tree | 7a6bd6c8645f6f0853d2485b52ccbcb51391e603 /src/gui/gui.cpp | |
parent | 1ea7d80aff0961e6f55ee467b8cbe26d146828f8 (diff) | |
download | mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.gz mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.bz2 mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.xz mana-3bf163c923526e545d9738d0047b5de352a85a7c.zip |
Shut up some compiler warnings.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 4 |
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) |