Skip to content

Commit

Permalink
Fix build with VS2010
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGibson committed Dec 15, 2018
1 parent c114d56 commit d204761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/Item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void idItem::Spawn( void ) {
const char *kv;

kv = spawnArgs.GetString( "inv_name", "" );
if ( idStr::strcmp(kv, "") != 0 ) { // SnoopJeDi - Only if it's something good to eat!
if ( idStr::Cmp(kv, "") != 0 ) { // SnoopJeDi - Only if it's something good to eat!
gameLocal.items++;
}

Expand Down

0 comments on commit d204761

Please sign in to comment.