mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
* Reimplement console history recall "bug" behaviour without the bug
This commit is contained in:
parent
91b2b9297a
commit
2e19bdfb5d
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue