diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-08-30 22:07:50 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-08-30 22:07:50 +0000 |
commit | 09d43a1e29d1fdbdac0c37e45c014733f7bfb1d6 (patch) | |
tree | a77b8ffe7c6948f33a6fdeba4ee78159c6a47e9f /code | |
parent | 9a4940ab28d892ac0b1e4d5a4a4fbf9ed9ab26e1 (diff) | |
download | ioquake3-aero-09d43a1e29d1fdbdac0c37e45c014733f7bfb1d6.tar.gz ioquake3-aero-09d43a1e29d1fdbdac0c37e45c014733f7bfb1d6.zip |
* Fix to console completion bug introduced by the last fix (from the oops
dept.)
git-svn-id: svn://svn.icculus.org/quake3/trunk@1465 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c index 7036f2f..5dda171 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -3141,7 +3141,7 @@ static qboolean Field_Complete( void ) int completionOffset; if( matchCount == 0 ) - return qfalse; + return qtrue; completionOffset = strlen( completionField->buffer ) - strlen( completionString ); |