Skip to content

Commit

Permalink
Fix a print statement error that Obsttorte found.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.thedarkmod.com/svn/darkmod_src/trunk@5721 49c82d7f-2e2a-0410-a16f-ae8f201b507f
  • Loading branch information
grayman committed Mar 21, 2013
1 parent 2eb829d commit 7617b54
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions game/ai/AI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4170,10 +4170,8 @@ void idAI::SetMoveType( idStr moveType )
}
else
{
gameLocal.Warning( "Invalid movetype %s", moveType );
gameLocal.Warning( "Invalid movetype %s", moveType.c_str() );
}


}

/*
Expand Down

0 comments on commit 7617b54

Please sign in to comment.