From 2f5f65d6070d711904889e83cbb1a3ee228a9b2f Mon Sep 17 00:00:00 2001 From: hexdec Date: Sun, 17 Aug 2014 22:40:34 +0200 Subject: [PATCH] Fixed resize gripper not showing up on guest and staff windows. --- src/window_peep.c | 2 +- src/window_staff_peep.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/window_peep.c b/src/window_peep.c index 570e8cddcf..13376b714c 100644 --- a/src/window_peep.c +++ b/src/window_peep.c @@ -152,7 +152,7 @@ void window_peep_open(rct_peep* peep){ window->min_height = 157; window->max_width = 500; window->max_height = 450; - window->flags = 8; + window->flags = 1 << 8; window->no_list_items = 0; window->selected_list_item = -1; window->colours[0] = 1; diff --git a/src/window_staff_peep.c b/src/window_staff_peep.c index 0d68899aa7..d4bd010646 100644 --- a/src/window_staff_peep.c +++ b/src/window_staff_peep.c @@ -198,7 +198,7 @@ rct_window* sub_6BEF1B(rct_peep* peep) w->max_width = 500; w->max_height = 450; - w->flags = 8; + w->flags = 1 << 8; w->colours[0] = 1; w->colours[1] = 4;