mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
Fix compiler warning on Windows ARM64
This commit is contained in:
parent
3856891467
commit
0e6decbdfb
@ -113,7 +113,9 @@ void AnimateAnimatedTiles()
|
||||
|
||||
auto next = iter;
|
||||
++next;
|
||||
if (next != _animated_tiles.end()) PREFETCH_NTA(&(next->second));
|
||||
if (next != _animated_tiles.end()) {
|
||||
PREFETCH_NTA(&(next->second));
|
||||
}
|
||||
|
||||
if (iter->second.speed <= max_speed) {
|
||||
const TileIndex curr = iter->first;
|
||||
|
Loading…
Reference in New Issue
Block a user