From 7617b548167eb6bb2759ab33f032e0a0019dbc7a Mon Sep 17 00:00:00 2001 From: grayman Date: Thu, 21 Mar 2013 12:08:34 +0000 Subject: [PATCH] Fix a print statement error that Obsttorte found. git-svn-id: https://svn.thedarkmod.com/svn/darkmod_src/trunk@5721 49c82d7f-2e2a-0410-a16f-ae8f201b507f --- game/ai/AI.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/game/ai/AI.cpp b/game/ai/AI.cpp index 4a40ed4bf..4a140b32c 100644 --- a/game/ai/AI.cpp +++ b/game/ai/AI.cpp @@ -4170,10 +4170,8 @@ void idAI::SetMoveType( idStr moveType ) } else { - gameLocal.Warning( "Invalid movetype %s", moveType ); + gameLocal.Warning( "Invalid movetype %s", moveType.c_str() ); } - - } /*