diff options
author | truelight <truelight@openttd.org> | 2004-08-25 08:57:25 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-08-25 08:57:25 +0000 |
commit | 855aa8beed41a93bd8a4aafcdd1660d3ceb7398b (patch) | |
tree | 74dad3566b6af338d1f5b8fbfb105d5d75e7b954 | |
parent | 7701b0a24151de04036cbf7855354a42daed5b11 (diff) | |
download | openttd-855aa8beed41a93bd8a4aafcdd1660d3ceb7398b.tar.xz |
(svn r138) -Add: 64x64 stations are now nicely painted (increased size of
parent_list)
-rw-r--r-- | viewport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewport.c b/viewport.c index bc7f89d3d..a1d6614ed 100644 --- a/viewport.c +++ b/viewport.c @@ -1136,7 +1136,7 @@ void ViewportDoDraw(ViewPort *vp, int left, int top, int right, int bottom) DrawPixelInfo *old_dpi; byte mem[VIEWPORT_DRAW_MEM]; - ParentSpriteToDraw *parent_list[1000]; + ParentSpriteToDraw *parent_list[6144]; _cur_vd = &vd; |