aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/common.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-08-30 22:07:50 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-08-30 22:07:50 +0000
commit09d43a1e29d1fdbdac0c37e45c014733f7bfb1d6 (patch)
treea77b8ffe7c6948f33a6fdeba4ee78159c6a47e9f /code/qcommon/common.c
parent9a4940ab28d892ac0b1e4d5a4a4fbf9ed9ab26e1 (diff)
downloadioquake3-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/qcommon/common.c')
-rw-r--r--code/qcommon/common.c2
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 );