Codechange: do not implicitly convert during assignment to StrongType

This commit is contained in:
Rubidium
2025-01-01 18:50:57 +01:00
committed by rubidium42
parent 448d6ede4a
commit c0df898ac5
25 changed files with 57 additions and 58 deletions
+1 -1
View File
@@ -220,7 +220,7 @@ static void HandleLinkClick(Link link)
case LT_TILE:
if (!IsValidTile(link.target)) return;
xy = link.target;
xy = TileIndex{link.target};
break;
case LT_INDUSTRY: