Merge pull request #1708 from Gymnasiast/large-list-scroll

Fix scrollbar getting stuck on large lists
This commit is contained in:
Ted John 2015-07-29 16:50:50 +01:00
commit 27193a3c7c
1 changed files with 8 additions and 8 deletions

View File

@ -92,14 +92,14 @@ typedef struct {
*/
typedef struct {
uint16 flags; // 0x00
sint16 h_left; // 0x02
sint16 h_right; // 0x04
sint16 h_thumb_left; // 0x06
sint16 h_thumb_right; // 0x08
sint16 v_top; // 0x0A
sint16 v_bottom; // 0x0C
sint16 v_thumb_top; // 0x0E
sint16 v_thumb_bottom; // 0x10
uint16 h_left; // 0x02
uint16 h_right; // 0x04
uint16 h_thumb_left; // 0x06
uint16 h_thumb_right; // 0x08
uint16 v_top; // 0x0A
uint16 v_bottom; // 0x0C
uint16 v_thumb_top; // 0x0E
uint16 v_thumb_bottom; // 0x10
} rct_scroll;
/**