1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Fix MSVC build errors and warnings

This commit is contained in:
Ted John
2017-08-06 01:26:14 +01:00
committed by Michał Janiszewski
parent 2e89525888
commit f3ef92edcb
20 changed files with 52 additions and 65 deletions

View File

@@ -1165,7 +1165,7 @@ static void window_editor_object_selection_invalidate(rct_window *w)
else {
for (sint32 i = 0; i < 6; i++) {
if (_filter_flags & (1 << (5 + i)))
w->pressed_widgets |= (uint64)(1 << (WIDX_FILTER_RIDE_TAB_TRANSPORT + i));
w->pressed_widgets |= (uint64)(1ULL << (WIDX_FILTER_RIDE_TAB_TRANSPORT + i));
}
}
w->widgets[WIDX_FILTER_RIDE_TAB_FRAME].type = WWT_IMGBTN;