1
0
forked from 0ad/0ad

Documented the console cursor character's magic number (U+FE33)

This was SVN commit r966.
This commit is contained in:
Ykkrosh 2004-08-11 14:48:36 +00:00
parent 4d202beb5b
commit b09896a62b

View File

@ -271,8 +271,14 @@ void CConsole::DrawBuffer(void)
void CConsole::DrawCursor(void)
{
glPushMatrix();
// Slightly translucent yellow
glColor4f(1.0f, 1.0f, 0.0f, 0.8f);
// U+FE33: PRESENTATION FORM FOR VERTICAL LOW LINE
// (sort of like a | which is aligned to the left of most characters)
glwprintf(L"%lc", 0xFE33);
// Revert to the standard text colour
glColor3f(1.0f, 1.0f, 1.0f);
glPopMatrix();
}