[styles] Convert PNG road warning icons to SVG

Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
This commit is contained in:
David Martinez
2025-08-19 18:08:34 +02:00
committed by Konstantin Pastbin
parent 29d60c9af0
commit 887bc2c755
43 changed files with 93 additions and 3 deletions

View File

@@ -667,9 +667,9 @@ drape_ptr<df::UserPointMark::SymbolNameZoomInfo> RoadWarningMark::GetSymbolNames
switch (m_type)
{
using enum RoadWarningMarkType;
case Toll: symbolName = "paid_road"; break;
case Ferry: symbolName = "ferry"; break;
case Dirty: symbolName = "unpaved_road"; break;
case Toll: symbolName = "warning-paid_road"; break;
case Ferry: symbolName = "warning-ferry"; break;
case Dirty: symbolName = "warning-unpaved_road"; break;
case Count: CHECK(false, ()); break;
}
auto symbol = make_unique_dp<SymbolNameZoomInfo>();