changeset 9858:72659447f872 draft

(svn r14003) -Codechange: Replace numbers with Colours enum opn some DrawArrowButtons calls
author belugas <belugas@openttd.org>
date Wed, 06 Aug 2008 04:01:07 +0000
parents 5b6c8f8f755d
children f47f2138b166
files src/cheat_gui.cpp src/industry_gui.cpp
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/cheat_gui.cpp
+++ b/src/cheat_gui.cpp
@@ -157,7 +157,7 @@
 					char buf[512];
 
 					/* Draw [<][>] boxes for settings of an integer-type */
-					DrawArrowButtons(x + 20, y, 3, clicked - (i * 2), true, true);
+					DrawArrowButtons(x + 20, y, COLOUR_YELLOW, clicked - (i * 2), true, true);
 
 					switch (ce->str) {
 						/* Display date for change date cheat */
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -536,7 +536,7 @@
 			DrawStringTruncated(x, y, STR_482B_TRANSPORTED, TC_FROMSTRING, this->widget[IVW_INFO].right - x);
 			/* Let's put out those buttons.. */
 			if (IsProductionAlterable(i)) {
-				DrawArrowButtons(5, y, 3, (this->clicked_line == j + 1) ? this->clicked_button : 0,
+				DrawArrowButtons(5, y, COLOUR_YELLOW, (this->clicked_line == j + 1) ? this->clicked_button : 0,
 						!IsProductionMinimum(i, j), !IsProductionMaximum(i, j));
 			}
 			y += 10;