Fix border issue #1428

This commit is contained in:
Maikel Stuivenberg 2015-06-24 01:54:59 +02:00
parent e39505e23d
commit b40be2aba1
1 changed files with 2 additions and 2 deletions

View File

@ -1109,8 +1109,8 @@ static void window_cheats_set_page(rct_window *w, int page)
window_invalidate(w);
w->height = maxY;
w->widgets[WIDX_BACKGROUND].bottom = maxY;
w->widgets[WIDX_PAGE_BACKGROUND].bottom = maxY;
w->widgets[WIDX_BACKGROUND].bottom = maxY - 1;
w->widgets[WIDX_PAGE_BACKGROUND].bottom = maxY - 1;
window_invalidate(w);
}