* Reimplement console history recall "bug" behaviour without the bug

This commit is contained in:
Tim Angus 2006-02-04 00:28:57 +00:00
parent 91b2b9297a
commit 2e19bdfb5d
1 changed files with 6 additions and 2 deletions

View File

@ -548,9 +548,13 @@ void Console_Key (int key) {
if ( (key == K_MWHEELDOWN && keys[K_SHIFT].down) || ( key == K_DOWNARROW ) || ( key == K_KP_DOWNARROW ) ||
( ( tolower(key) == 'n' ) && keys[K_CTRL].down ) ) {
if (historyLine + 1 == nextHistoryLine)
return;
historyLine++;
if (historyLine >= nextHistoryLine) {
historyLine = nextHistoryLine;
Field_Clear( &g_consoleField );
g_consoleField.widthInChars = g_console_field_width;
return;
}
g_consoleField = historyEditLines[ historyLine % COMMAND_HISTORY ];
return;
}