Fix function argument

This commit is contained in:
Phillip Stephens 2016-03-16 12:56:57 -07:00
parent d86bb6e951
commit 562824e386
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ void CRasterFont::DrawSpace(const CDrawStringOptions& opts, int x, int y, int& x
yout = y; yout = y;
} }
void CRasterFont::DrawString(const CDrawStringOptions& opts, int x, int y, int xout, int& yout, CTextRenderBuffer* renderBuf, const wchar_t* str, int len) const void CRasterFont::DrawString(const CDrawStringOptions& opts, int x, int y, int& xout, int& yout, CTextRenderBuffer* renderBuf, const wchar_t* str, int len) const
{ {
if (!x0_) if (!x0_)
return; return;

View File

@ -150,7 +150,7 @@ public:
CTextRenderBuffer* renderBuf, CTextRenderBuffer* renderBuf,
const wchar_t* str, s32 len) const; const wchar_t* str, s32 len) const;
void DrawSpace(const CDrawStringOptions& opts, int x, int y, int& xout, int& yout, int len) const; void DrawSpace(const CDrawStringOptions& opts, int x, int y, int& xout, int& yout, int len) const;
void DrawString(const CDrawStringOptions& opts, int x, int y, int xout, int& yout, void DrawString(const CDrawStringOptions& opts, int x, int y, int& xout, int& yout,
CTextRenderBuffer* renderBuf, CTextRenderBuffer* renderBuf,
const wchar_t* str, int len) const; const wchar_t* str, int len) const;
CGlyph* GetGlyph(wchar_t chr) CGlyph* GetGlyph(wchar_t chr)