From 769297c905a9aea9d0bc35328a315ca77c10e848 Mon Sep 17 00:00:00 2001 From: anyc Date: Sat, 24 May 2014 21:17:23 +0200 Subject: [PATCH] fix to enable rotate station/building button --- src/game.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index fd6fa75af7..2405f4a765 100644 --- a/src/game.c +++ b/src/game.c @@ -746,8 +746,9 @@ static void input_leftmousedown(int x, int y, rct_window *w, int widgetIndex) } break; default: - if (!widget_is_enabled(w, widgetIndex)) - break; + // comment check as it disables the rotate station/building button in construction window +// if (!widget_is_enabled(w, widgetIndex)) +// break; if (widget_is_disabled(w, widgetIndex)) break;