Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2016-04-15 11:09:10 +02:00
commit 19c03bf996

View file

@ -181,7 +181,7 @@ public class TurnType {
public static int getSecondaryTurn(int laneValue) {
// Get the secondary turn modifier for the lane
return (laneValue >> 5);
return (laneValue >> 5) & ((1 << 5) - 1);
}
public static void setPrimaryTurnShiftOthers(int[] lanes, int lane, int turnType) {