diff -r 1fb80cd8ba7b -r 5c40c65b619d hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Thu Sep 10 04:59:02 2015 +0200 +++ b/hedgewars/uWorld.pas Thu Sep 10 18:22:52 2015 +0200 @@ -1148,7 +1148,7 @@ procedure ShiftWorld(Dir: LongInt); inline; begin preShiftWorldDx:= WorldDx; - WorldDx:= WorldDx + Dir * LongInt(playWidth); + WorldDx:= WorldDx + LongInt(Dir * LongInt(playWidth)); end;