summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-06-18 02:04:01 +0000
committerbelugas <belugas@openttd.org>2008-06-18 02:04:01 +0000
commitdb174b8b9b33b8ef36439cb173428d2fd613d4be (patch)
treef234c5aeffd7d2278313d53a9dfc38edf34c2f4b /src
parentb8b47dcf50652591fe391a4fe79f796d50ebb5ce (diff)
downloadopenttd-db174b8b9b33b8ef36439cb173428d2fd613d4be.tar.xz
(svn r13560) -Fix(r13550): This section widget_count did not required to be lowered. So small revert
Diffstat (limited to 'src')
-rw-r--r--src/toolbar_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp
index e5edd8344..b8d3933cf 100644
--- a/src/toolbar_gui.cpp
+++ b/src/toolbar_gui.cpp
@@ -1152,7 +1152,7 @@ public:
}
uint extra_spacing_at[] = { 3, 4, 7, 8, 10, 16, 0 };
- for (uint i = 0, x = 0, j = 0, b = 0; i < this->widget_count - 1; i++) {
+ for (uint i = 0, x = 0, j = 0, b = 0; i < this->widget_count; i++) {
switch (i) {
case 4:
this->widget[i].left = x;