1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 16:54:52 +01:00

Change FilterPaletteID to lowerCamelCase

This commit is contained in:
Gymnasiast
2025-09-23 21:09:54 +02:00
parent c3ac626cd5
commit a03613df35
52 changed files with 329 additions and 329 deletions

View File

@@ -596,12 +596,12 @@ void CustomListView::Paint(WindowBase* w, RenderTarget& rt, const ScrollArea* sc
if (isSelected)
{
GfxFilterRect(
rt, { { rt.x, y }, { rt.x + rt.width, y + (kListRowHeight - 1) } }, FilterPaletteID::PaletteDarken2);
rt, { { rt.x, y }, { rt.x + rt.width, y + (kListRowHeight - 1) } }, FilterPaletteID::paletteDarken2);
}
else if (isHighlighted)
{
GfxFilterRect(
rt, { { rt.x, y }, { rt.x + rt.width, y + (kListRowHeight - 1) } }, FilterPaletteID::PaletteDarken2);
rt, { { rt.x, y }, { rt.x + rt.width, y + (kListRowHeight - 1) } }, FilterPaletteID::paletteDarken2);
}
else if (isStriped)
{