diff options
author | smatz <smatz@openttd.org> | 2009-06-01 11:49:46 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-06-01 11:49:46 +0000 |
commit | c03ce4b1c704ef638374f56bbb9692db0e4e354c (patch) | |
tree | 72c24a2c268425261ae4e01f9900cedef22ecc26 /src/gamelog.cpp | |
parent | bab70a823dd810e1d4477f0c01d3a7b3e9b19ac8 (diff) | |
download | openttd-c03ce4b1c704ef638374f56bbb9692db0e4e354c.tar.xz |
(svn r16492) -Remove: support for gcc2. It hasn't been able to compile OTTD for months. All attempts to do another workaround failed.
Diffstat (limited to 'src/gamelog.cpp')
-rw-r--r-- | src/gamelog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gamelog.cpp b/src/gamelog.cpp index 55b6a7468..1198e20ed 100644 --- a/src/gamelog.cpp +++ b/src/gamelog.cpp @@ -591,7 +591,7 @@ void GamelogGRFAddList(const GRFConfig *newg) /** List of GRFs using array of pointers instead of linked list */ struct GRFList { uint n; - const GRFConfig *grf[VARARRAY_SIZE]; + const GRFConfig *grf[]; }; /** Generates GRFList |