diff options
| author | oy <Tom_Adams@web.de> | 2012-04-21 00:23:48 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2013-02-24 17:34:51 +0100 |
| commit | 86cd0cefd7cdefd7443cb9602b3c834fa85134e1 (patch) | |
| tree | b526caaba3fe6878589bade04932be253116af52 /src/engine/client/text.cpp | |
| parent | 14cd83de10e5725db6f159a9cfe8d0c8d7bd9b59 (diff) | |
| download | zcatch-86cd0cefd7cdefd7443cb9602b3c834fa85134e1.tar.gz zcatch-86cd0cefd7cdefd7443cb9602b3c834fa85134e1.zip | |
fixed wrapping problems when rendering console input
Diffstat (limited to 'src/engine/client/text.cpp')
| -rw-r--r-- | src/engine/client/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/client/text.cpp b/src/engine/client/text.cpp index af06fc11..d838ef29 100644 --- a/src/engine/client/text.cpp +++ b/src/engine/client/text.cpp @@ -639,7 +639,7 @@ public: Compare.m_Y = DrawY; Compare.m_Flags &= ~TEXTFLAG_RENDER; Compare.m_LineWidth = -1; - TextEx(&Compare, pText, Wlen); + TextEx(&Compare, pCurrent, Wlen); if(Compare.m_X-DrawX > pCursor->m_LineWidth) { |