mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 16:54:52 +01:00
Implement #4984: Add option to highlight vomit, litter and handymen
This commit is contained in:
@@ -903,7 +903,8 @@ static void viewport_paint_column(rct_drawpixelinfo * dpi, uint32 viewFlags)
|
||||
|
||||
if (gConfigGeneral.render_weather_gloom &&
|
||||
!gTrackDesignSaveMode &&
|
||||
!(viewFlags & VIEWPORT_FLAG_INVISIBLE_SPRITES)
|
||||
!(viewFlags & VIEWPORT_FLAG_INVISIBLE_SPRITES) &&
|
||||
!(viewFlags & VIEWPORT_FLAG_HIGHLIGHT_PATH_ISSUES)
|
||||
) {
|
||||
viewport_paint_weather_gloom(dpi);
|
||||
}
|
||||
|
||||
@@ -41,6 +41,7 @@ enum {
|
||||
VIEWPORT_FLAG_15 = (1 << 15),
|
||||
VIEWPORT_FLAG_SEETHROUGH_PATHS = (1 << 16),
|
||||
VIEWPORT_FLAG_PAINT_CLIP_TO_HEIGHT = (1 << 17),
|
||||
VIEWPORT_FLAG_HIGHLIGHT_PATH_ISSUES = (1 << 18),
|
||||
};
|
||||
|
||||
enum {
|
||||
|
||||
Reference in New Issue
Block a user