diff options
author | bjarni <bjarni@openttd.org> | 2006-08-30 19:10:12 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2006-08-30 19:10:12 +0000 |
commit | 8f102334ff9947db18208fbb5b95b9b820bfc814 (patch) | |
tree | c44002d0cc3f9878aa002ac4bdb406f463e5699f | |
parent | ced2972c7499ba28928ca87f6ad0c8fbfe05cfba (diff) | |
download | openttd-8f102334ff9947db18208fbb5b95b9b820bfc814.tar.xz |
(svn r6241) -Fix r6240: missed altering one line in last commit
-rw-r--r-- | vehicle_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c index bab1cff13..5445fe212 100644 --- a/vehicle_gui.c +++ b/vehicle_gui.c @@ -1348,7 +1348,7 @@ void PlayerVehWndProc(Window *w, WindowEvent *e) DrawVehicleProfitButton(v, x, y + 13); - y += size_of_row; + y += w->resize.step_height; } } break; |