From 8ee9e8bf1e0b7c9fe9e9a41044e52f4e0e973634 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 25 Jun 2007 13:30:38 +0000 Subject: (svn r10323) -Codechange: reference company name, number and player (president) name by index --- src/openttd.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/openttd.cpp') diff --git a/src/openttd.cpp b/src/openttd.cpp index afbeaafe7..b3bd580c7 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1012,11 +1012,8 @@ static void DoAutosave() #endif /* PSP */ if (_patches.keep_all_autosave && _local_player != PLAYER_SPECTATOR) { - const Player *p = GetPlayer(_local_player); - - SetDParam(0, p->name_1); - SetDParam(1, p->name_2); - SetDParam(2, _date); + SetDParam(0, _local_player); + SetDParam(1, _date); GetString(buf, STR_4004, lastof(buf)); ttd_strlcpy(buf, ".sav", sizeof(buf)); } else { -- cgit v1.2.3-54-g00ecf