Fix #1718. Incorrect cursors on scroll widgets.

Issue was being caused by passing the incorrect x and y parameters due to missing a widget dereference. I've also moved the x/y coordinates of the hand open/close to closer match what it feels like.
This commit is contained in:
duncanspumpkin 2015-09-27 16:55:34 +01:00
parent 1a0fc46559
commit a697606211
2 changed files with 5 additions and 5 deletions

View File

@ -174,12 +174,12 @@ extern unsigned char entrance_down_cursor_mask[32 * 4];
extern unsigned char hand_open_cursor_data[32 * 4];
extern unsigned char hand_open_cursor_mask[32 * 4];
#define HAND_OPEN_CURSOR_HOTX 0
#define HAND_OPEN_CURSOR_HOTY 0
#define HAND_OPEN_CURSOR_HOTX 5
#define HAND_OPEN_CURSOR_HOTY 1
extern unsigned char hand_closed_cursor_data[32 * 4];
extern unsigned char hand_closed_cursor_mask[32 * 4];
#define HAND_CLOSED_CURSOR_HOTX 0
#define HAND_CLOSED_CURSOR_HOTY 0
#define HAND_CLOSED_CURSOR_HOTX 5
#define HAND_CLOSED_CURSOR_HOTY 1
#endif

View File

@ -1023,7 +1023,7 @@ void process_mouse_over(int x, int y)
RCT2_GLOBAL(0x9DE558, uint16) = x;
RCT2_GLOBAL(0x9DE55A, uint16) = y;
int output_scroll_area, scroll_id;
widget_scroll_get_part(window, window->widgets, x, y, &x, &y, &output_scroll_area, &scroll_id);
widget_scroll_get_part(window, &window->widgets[widgetId], x, y, &x, &y, &output_scroll_area, &scroll_id);
cursorId = scroll_id;
if (output_scroll_area != SCROLL_PART_VIEW)
{