1
0
forked from 0ad/0ad

Less ambiguous cursor in console

This was SVN commit r965.
This commit is contained in:
Ykkrosh 2004-08-10 17:16:46 +00:00
parent 58e22c5117
commit 4d202beb5b

View File

@ -271,7 +271,9 @@ void CConsole::DrawBuffer(void)
void CConsole::DrawCursor(void) void CConsole::DrawCursor(void)
{ {
glPushMatrix(); glPushMatrix();
glwprintf(L"_"); glColor4f(1.0f, 1.0f, 0.0f, 0.8f);
glwprintf(L"%lc", 0xFE33);
glColor3f(1.0f, 1.0f, 1.0f);
glPopMatrix(); glPopMatrix();
} }