mirror of https://github.com/OpenTTD/OpenTTD
(svn r12121) -Fix [FS#1764]: Drop down item indexes are now an int instead of a byte (Yexo)
parent
592e22cc3a
commit
9f6fd72c09
|
@ -49,7 +49,7 @@ struct dropdown_d {
|
||||||
WindowNumber parent_wnd_num;
|
WindowNumber parent_wnd_num;
|
||||||
byte parent_button;
|
byte parent_button;
|
||||||
DropDownList *list;
|
DropDownList *list;
|
||||||
byte selected_index;
|
int selected_index;
|
||||||
byte click_delay;
|
byte click_delay;
|
||||||
bool drag_mode;
|
bool drag_mode;
|
||||||
int scrolling;
|
int scrolling;
|
||||||
|
|
Loading…
Reference in New Issue