diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2010-07-05 20:57:07 +0200 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2010-07-05 20:57:07 +0200 |
| commit | 575f72d978c700e4bedb46f4083bf1c24726640e (patch) | |
| tree | 4ff07848769ab4e308cbd27959181423904f4292 /src/engine/textrender.h | |
| parent | d302ba921e61177da9af1f85df58fe6f47ca5e95 (diff) | |
| download | zcatch-575f72d978c700e4bedb46f4083bf1c24726640e.tar.gz zcatch-575f72d978c700e4bedb46f4083bf1c24726640e.zip | |
fixed some compiler errors and warnings with clang
Diffstat (limited to 'src/engine/textrender.h')
| -rw-r--r-- | src/engine/textrender.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/textrender.h b/src/engine/textrender.h index 7c7e036b..38dd5d86 100644 --- a/src/engine/textrender.h +++ b/src/engine/textrender.h @@ -23,7 +23,7 @@ public: float m_LineWidth; float m_X, m_Y; - struct CFont *m_pFont; + CFont *m_pFont; float m_FontSize; }; @@ -36,7 +36,7 @@ public: virtual CFont *LoadFont(const char *pFilename) = 0; virtual void DestroyFont(CFont *pFont) = 0; - virtual void SetDefaultFont(struct CFont *pFont) = 0; + virtual void SetDefaultFont(CFont *pFont) = 0; // virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length) = 0; |