summaryrefslogtreecommitdiff
path: root/src/newgrf_roadtype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_roadtype.cpp')
-rw-r--r--src/newgrf_roadtype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_roadtype.cpp b/src/newgrf_roadtype.cpp
index e4d29e4c5..8eb8325c7 100644
--- a/src/newgrf_roadtype.cpp
+++ b/src/newgrf_roadtype.cpp
@@ -18,7 +18,7 @@
/* virtual */ uint32 RoadTypeScopeResolver::GetRandomBits() const
{
- uint tmp = CountBits(this->tile + (TileX(this->tile) + TileY(this->tile)) * TILE_SIZE);
+ uint tmp = CountBits(static_cast<uint32>(this->tile + (TileX(this->tile) + TileY(this->tile)) * TILE_SIZE));
return GB(tmp, 0, 2);
}