mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-06 06:32:56 +01:00
Correct &-operation not in brackets
This commit is contained in:
@@ -369,7 +369,7 @@ static void window_footpath_dropdown()
|
||||
if (pathType->flags & flags)
|
||||
continue;
|
||||
// Skip queue lines of scenario editor-only paths (only applicable when the game is in sandbox mode)
|
||||
if(widgetIndex == WIDX_QUEUELINE_TYPE && pathType->flags & 4)
|
||||
if(widgetIndex == WIDX_QUEUELINE_TYPE && (pathType->flags & 4))
|
||||
continue;
|
||||
|
||||
if (j == pathId)
|
||||
|
||||
Reference in New Issue
Block a user