From c40df001ca0dc1accb84c24c1074e46a3849ff51 Mon Sep 17 00:00:00 2001 From: Ted John Date: Tue, 24 Jan 2017 17:04:03 +0000 Subject: [PATCH] Use sint32 --- src/openrct2/windows/staff_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/windows/staff_list.c b/src/openrct2/windows/staff_list.c index 218acd98d7..4d9ffb8107 100644 --- a/src/openrct2/windows/staff_list.c +++ b/src/openrct2/windows/staff_list.c @@ -221,7 +221,7 @@ static void window_staff_list_mouseup(rct_window *w, sint32 widgetIndex) break; case WIDX_STAFF_LIST_HIRE_BUTTON: { - int staffType = _windowStaffListSelectedTab; + sint32 staffType = _windowStaffListSelectedTab; if (staffType == STAFF_TYPE_ENTERTAINER) { uint8 costume = window_staff_list_get_random_entertainer_costume();