From d06529ef4d84ce90c90ed560a6b2f3525880c40e Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 17 Jul 2008 20:13:01 +0000 Subject: (svn r13719) -Codechange: rename IsValidPlayer to IsValidPlayerID in line with all other structs/classes that are in a pool. --- src/ai/ai.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai/ai.cpp') diff --git a/src/ai/ai.cpp b/src/ai/ai.cpp index fafafbc21..c32f52ad8 100644 --- a/src/ai/ai.cpp +++ b/src/ai/ai.cpp @@ -212,7 +212,7 @@ void AI_RunGameLoop() */ void AI_StartNewAI(PlayerID player) { - assert(IsValidPlayer(player)); + assert(IsValidPlayerID(player)); /* Called if a new AI is booted */ _ai_player[player].active = true; -- cgit v1.2.3-54-g00ecf