Revert "changed console prompt to make it look like bash prompt"

This reverts commit bec7f8354d.
This commit is contained in:
CJ AYHO 2013-08-14 15:04:29 +03:00
parent 79d920dd39
commit 2ec4acf44b

View file

@ -1016,10 +1016,9 @@ void idConsoleLocal::DrawInput() {
renderSystem->SetColor( idStr::ColorForIndex( C_COLOR_CYAN ) );
renderSystem->DrawSmallChar( 1 * SMALLCHAR_WIDTH, y, '$', localConsole.charSetShader );
renderSystem->DrawSmallChar( 1 * SMALLCHAR_WIDTH, y, ' ', localConsole.charSetShader );
renderSystem->DrawSmallChar( 1 * SMALLCHAR_WIDTH, y, ']', localConsole.charSetShader );
consoleField.Draw(3 * SMALLCHAR_WIDTH, y, SCREEN_WIDTH - 4 * SMALLCHAR_WIDTH, true, charSetShader );
consoleField.Draw(2 * SMALLCHAR_WIDTH, y, SCREEN_WIDTH - 3 * SMALLCHAR_WIDTH, true, charSetShader );
}