Fix scrollbar getting stuck on large lists

This commit is contained in:
Gymnasiast 2015-07-29 11:04:38 +02:00
parent 8282802574
commit a89cee3abf
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
sint32 h_left; // 0x02
sint32 h_right; // 0x04
sint32 h_thumb_left; // 0x06
sint32 h_thumb_right; // 0x08
sint32 v_top; // 0x0A
sint32 v_bottom; // 0x0C
sint32 v_thumb_top; // 0x0E
sint32 v_thumb_bottom; // 0x10
} rct_scroll;
/**