summaryrefslogtreecommitdiff
path: root/src/gui/browserbox.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-06-17 23:52:01 +0000
committerAaron Marks <nymacro@gmail.com>2005-06-17 23:52:01 +0000
commit6e1dbe34d9ef4c5c06887187fa20c5461c159579 (patch)
tree2ba6811940b0042ab1ea2d87ecd761f34238a003 /src/gui/browserbox.cpp
parentc702285ab5c288fc65dacdf81b583890d3b99c63 (diff)
downloadMana-6e1dbe34d9ef4c5c06887187fa20c5461c159579.tar.gz
Mana-6e1dbe34d9ef4c5c06887187fa20c5461c159579.tar.bz2
Mana-6e1dbe34d9ef4c5c06887187fa20c5461c159579.tar.xz
Mana-6e1dbe34d9ef4c5c06887187fa20c5461c159579.zip
Updated BrowserBox to work with SDL by using the original font. (the setColor
calls can be ignored, as they have no effect on the font when Guichan is using SDL).
Diffstat (limited to 'src/gui/browserbox.cpp')
-rw-r--r--src/gui/browserbox.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp
index 06094139..3886a401 100644
--- a/src/gui/browserbox.cpp
+++ b/src/gui/browserbox.cpp
@@ -22,6 +22,7 @@
*/
#include "browserbox.h"
+#include "gui.h"
int BrowserBox::instances = 0;
gcn::ImageFont* BrowserBox::browserFont;
@@ -38,10 +39,14 @@ BrowserBox::BrowserBox(unsigned int mode):
if (instances == 0)
{
+#ifdef OPENGL_SUPPORT
browserFont = new gcn::ImageFont(
TMW_DATADIR "data/graphics/gui/browserfont.png",
" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567"
"89:@!\"$%&/=?^+*#[]{}()<>_;'.,\\|-~`");
+#else
+ browserFont = gui->getFont();
+#endif
}
instances++;
}