mirror of https://github.com/AxioDL/metaforce.git
Fix function argument
This commit is contained in:
parent
d86bb6e951
commit
562824e386
|
@ -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;
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue