Fix #11815, bb491127: Missing brackets prevented vehicles turning properly. (#11816)

pull/642/head
Peter Nelson 4 months ago committed by GitHub
parent fd0528a9b4
commit 341bdabc70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -71,7 +71,7 @@ inline DirDiff DirDifference(Direction d0, Direction d1)
assert(IsValidDirection(d1));
/* Cast to uint so compiler can use bitmask. If the difference is negative
* and we used int instead of uint, further "+ 8" would have to be added. */
return static_cast<DirDiff>(static_cast<uint>(d0) - static_cast<uint>(d1) % 8);
return static_cast<DirDiff>((static_cast<uint>(d0) - static_cast<uint>(d1)) % 8);
}
/**

Loading…
Cancel
Save