diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-13 10:26:11 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-13 10:26:11 +0000 |
commit | acf69fd277e17c6bdf001551697d7321f84909df (patch) | |
tree | 6f0468ec702d573fecabca0184d2cc2eec4d52f5 /src/gui/gui.cpp | |
parent | 39d944df9a84882925e587e2d0c39759ea129c8b (diff) | |
download | mana-acf69fd277e17c6bdf001551697d7321f84909df.tar.gz mana-acf69fd277e17c6bdf001551697d7321f84909df.tar.bz2 mana-acf69fd277e17c6bdf001551697d7321f84909df.tar.xz mana-acf69fd277e17c6bdf001551697d7321f84909df.zip |
Use gcn::Font instead of gcn::ImageFont as pointer type.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 60a1e0da..bf35e3ec 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -60,11 +60,11 @@ Gui *gui; gcn::SDLInput *guiInput; // GUI input // Fonts used in showing hits -gcn::ImageFont *hitRedFont; -gcn::ImageFont *hitBlueFont; -gcn::ImageFont *hitYellowFont; +gcn::Font *hitRedFont; +gcn::Font *hitBlueFont; +gcn::Font *hitYellowFont; // Font used to display speech and player names -gcn::ImageFont *speechFont; +gcn::Font *speechFont; class GuiConfigListener : public ConfigListener { |