diff options
author | peter1138 <peter1138@openttd.org> | 2005-10-31 12:01:41 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2005-10-31 12:01:41 +0000 |
commit | 95d1c43565402743d5cf6f215886ba028a54bb93 (patch) | |
tree | c58ba9869b9fc78455011c449534cd80a03a8dbe | |
parent | 7298b0b31b5f17adf25df4acf202411b737626bc (diff) | |
download | openttd-95d1c43565402743d5cf6f215886ba028a54bb93.tar.xz |
(svn r3110) Replace another 256 with TOTAL_NUM_ENGINES.
-rw-r--r-- | player.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ #include "aystar.h" #include "rail.h" +#include "engine.h" typedef struct PlayerEconomyEntry { int32 income; @@ -187,7 +188,7 @@ typedef struct Player { int64 yearly_expenses[3][13]; PlayerEconomyEntry cur_economy; PlayerEconomyEntry old_economy[24]; - EngineID engine_replacement[256]; + EngineID engine_replacement[TOTAL_NUM_ENGINES]; bool engine_renew; int16 engine_renew_months; uint32 engine_renew_money; |