From d6d5e0c117c68b79558dcab9f09f7ef10142d836 Mon Sep 17 00:00:00 2001 From: tma Date: Sat, 4 Feb 2006 00:28:57 +0000 Subject: * Reimplement console history recall "bug" behaviour without the bug git-svn-id: svn://svn.icculus.org/quake3/trunk@531 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/cl_keys.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'code') diff --git a/code/client/cl_keys.c b/code/client/cl_keys.c index 796cdf6..16ff35d 100644 --- a/code/client/cl_keys.c +++ b/code/client/cl_keys.c @@ -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; } -- cgit v1.2.3