diff options
author | tron <tron@openttd.org> | 2005-06-25 16:44:57 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-06-25 16:44:57 +0000 |
commit | bec5e4fb4cc475596e1f22db9232e2bd9a190d89 (patch) | |
tree | ed8629cbd76a9334fd657971f55ef5cb63c9915f /industry_gui.c | |
parent | 61f6f07edd837728d72e83daa0a4b8893ec77307 (diff) | |
download | openttd-bec5e4fb4cc475596e1f22db9232e2bd9a190d89.tar.xz |
(svn r2487) Replace TILE_XY by TileXY/TileDiffXY
Diffstat (limited to 'industry_gui.c')
-rw-r--r-- | industry_gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/industry_gui.c b/industry_gui.c index 4aa833188..97137fdd9 100644 --- a/industry_gui.c +++ b/industry_gui.c @@ -376,7 +376,7 @@ static void IndustryViewWndProc(Window *w, WindowEvent *e) break; case 6: i = GetIndustry(w->window_number); - ScrollMainWindowToTile(i->xy + TILE_XY(1,1)); + ScrollMainWindowToTile(i->xy + TileDiffXY(1, 1)); break; } } @@ -450,7 +450,7 @@ void ShowIndustryViewWindow(int industry) WP(w,vp2_d).data_2 = 0; WP(w,vp2_d).data_3 = 0; i = GetIndustry(w->window_number); - AssignWindowViewport(w, 3, 17, 0xFE, 0x56, i->xy + TILE_XY(1,1), 1); + AssignWindowViewport(w, 3, 17, 0xFE, 0x56, i->xy + TileDiffXY(1, 1), 1); } } |