aboutsummaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/client/cl_keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/cl_keys.c b/code/client/cl_keys.c
index 6f0dece..796cdf6 100644
--- a/code/client/cl_keys.c
+++ b/code/client/cl_keys.c
@@ -548,7 +548,7 @@ 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 == nextHistoryLine)
+ if (historyLine + 1 == nextHistoryLine)
return;
historyLine++;
g_consoleField = historyEditLines[ historyLine % COMMAND_HISTORY ];