Unify checks for missing COM_Parse() token

This commit is contained in:
Zack Middleton 2017-06-07 19:16:05 -05:00
parent d58234a6c7
commit 1048073e26
4 changed files with 15 additions and 15 deletions

View file

@ -119,7 +119,7 @@ static int GametypeBits( char *string ) {
p = string;
while( 1 ) {
token = COM_ParseExt( &p, qfalse );
if( token[0] == 0 ) {
if ( !token[0] ) {
break;
}