summaryrefslogtreecommitdiffstats
path: root/src/graphics/engine/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/engine/text.h')
-rw-r--r--src/graphics/engine/text.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/graphics/engine/text.h b/src/graphics/engine/text.h
index e587609..0ecf7cd 100644
--- a/src/graphics/engine/text.h
+++ b/src/graphics/engine/text.h
@@ -292,7 +292,9 @@ protected:
void DrawString(const std::string &text, FontType font,
float size, Math::Point pos, float width, int eol);
void DrawHighlight(FontHighlight hl, Math::Point pos, Math::Point size);
- void DrawChar(UTF8Char ch, FontType font, float size, Math::Point &pos);
+ void DrawCharAndAdjustPos(UTF8Char ch, FontType font, float size, Math::Point &pos);
+ std::vector<UTF8Char>
+ StringToUTFCharList(const std::string &text);
protected:
CInstanceManager* m_iMan;