1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(svn r2468) -Codechange: Got rid of DEREF_PLAYER and replaced it by GetPlayer

This commit is contained in:
celestar
2005-06-21 16:28:17 +00:00
parent e2df1d71d5
commit aa7334a3ec
26 changed files with 73 additions and 74 deletions

View File

@@ -754,7 +754,7 @@ StringID GetCustomEngineName(int engine)
void AcceptEnginePreview(Engine *e, PlayerID player)
{
Player *p = DEREF_PLAYER(player);
Player *p = GetPlayer(player);
SETBIT(e->player_avail, player);