summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilebuf.h
diff options
context:
space:
mode:
authorIxtli <cg@325i.org>2010-03-14 20:40:54 +0900
committerEnne Walker <ennewalker@users.sourceforge.net>2010-04-24 10:19:45 -0400
commit149c76283904371235ea6d564037900edb8b07af (patch)
tree6bcde02f7acf2485f7e557bb4c64f74d3abefa9d /crawl-ref/source/tilebuf.h
parentbab61331e9e1287ae14afe2644b68f4c49ff09d8 (diff)
downloadcrawl-ref-149c76283904371235ea6d564037900edb8b07af.tar.gz
crawl-ref-149c76283904371235ea6d564037900edb8b07af.zip
Created FontWrapper, and made FT flag in makefile.
Diffstat (limited to 'crawl-ref/source/tilebuf.h')
-rw-r--r--crawl-ref/source/tilebuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tilebuf.h b/crawl-ref/source/tilebuf.h
index 3be39cf18f..a3364330c5 100644
--- a/crawl-ref/source/tilebuf.h
+++ b/crawl-ref/source/tilebuf.h
@@ -14,7 +14,7 @@
// they do not introduce unneeded side effects for other parts of the code
// that have not thought about turning that new state off.
-class FTFont;
+class FontWrapper;
class formatted_string;
class GenericTexture;
class TilesTexture;
@@ -99,11 +99,11 @@ protected:
class FontBuffer : public VertBuffer<PTCVert>
{
public:
- FontBuffer(FTFont *font);
+ FontBuffer(FontWrapper *font);
void add(const formatted_string &fs, float x, float y);
void add(const std::string &s, const VColour &col, float x, float y);
protected:
- FTFont *m_font;
+ FontWrapper *m_font;
};
class TileBuffer : public VertBuffer<PTVert>