Add parens to fix operator precedence issue

I missed one... thankfully the CI did not.
This commit is contained in:
Richard Fine 2019-01-05 13:46:05 +00:00 committed by Ted John
parent 9bb68a7151
commit 480f19c0c6
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ void window_guest_overview_resize(rct_window* w)
widget_invalidate(w, WIDX_MARQUEE);
window_set_resize(w, 192 + gConfigGeneral.debugging_tools ? TabWidth : 0, 159, 500, 450);
window_set_resize(w, 192 + (gConfigGeneral.debugging_tools ? TabWidth : 0), 159, 500, 450);
rct_viewport* view = w->viewport;