(svn r12121) -Fix [FS#1764]: Drop down item indexes are now an int instead of a byte (Yexo)

This commit is contained in:
peter1138 2008-02-12 12:54:51 +00:00
parent 592e22cc3a
commit 9f6fd72c09
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ struct dropdown_d {
WindowNumber parent_wnd_num;
byte parent_button;
DropDownList *list;
byte selected_index;
int selected_index;
byte click_delay;
bool drag_mode;
int scrolling;