mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-06 20:30:36 +08:00
engine: common: cmd: fix inverted check in apropos
This commit is contained in:
@@ -1264,7 +1264,7 @@ static void Cmd_Apropos_f( void )
|
||||
|
||||
partial = Cmd_Args();
|
||||
|
||||
if( Q_strpbrk( partial, "*?" ))
|
||||
if( !Q_strpbrk( partial, "*?" ))
|
||||
{
|
||||
Q_snprintf( buf, sizeof( buf ), "*%s*", partial );
|
||||
partial = buf;
|
||||
|
||||
Reference in New Issue
Block a user