summaryrefslogtreecommitdiff
path: root/src/player_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-07-18 16:40:29 +0000
committerrubidium <rubidium@openttd.org>2008-07-18 16:40:29 +0000
commit3a799389ebf915cc59b6e85346d837621ebe771a (patch)
tree82319a3d42401c6d6fa4944e99863807f05c6f5f /src/player_func.h
parent891bec7e23a0a077df93b8fd1fe156ef059df8b4 (diff)
downloadopenttd-3a799389ebf915cc59b6e85346d837621ebe771a.tar.xz
(svn r13731) -Codechange: make a pool of the array of players.
Diffstat (limited to 'src/player_func.h')
-rw-r--r--src/player_func.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/player_func.h b/src/player_func.h
index 7c0e9de19..cc55f4661 100644
--- a/src/player_func.h
+++ b/src/player_func.h
@@ -27,11 +27,6 @@ static inline bool IsLocalPlayer()
return _local_player == _current_player;
}
-static inline bool IsValidPlayerID(PlayerID pi)
-{
- return IsInsideBS(pi, PLAYER_FIRST, MAX_PLAYERS);
-}
-
static inline bool IsInteractivePlayer(PlayerID pi)
{
return pi == _local_player;