+ add test for already fixed Mantis #37286

git-svn-id: trunk@46408 -
This commit is contained in:
svenbarth 2020-08-13 05:42:32 +00:00
parent 43d66a4ac8
commit fbb8e161fa
2 changed files with 21 additions and 0 deletions

1
.gitattributes vendored
View File

@ -18408,6 +18408,7 @@ tests/webtbs/tw37228.pp svneol=native#text/plain
tests/webtbs/tw37254.pp svneol=native#text/pascal
tests/webtbs/tw37261.pp svneol=native#text/pascal
tests/webtbs/tw37272a.pp svneol=native#text/pascal
tests/webtbs/tw37286.pp svneol=native#text/pascal
tests/webtbs/tw37301.pp svneol=native#text/pascal
tests/webtbs/tw37322.pp svneol=native#text/pascal
tests/webtbs/tw37323.pp svneol=native#text/pascal

20
tests/webtbs/tw37286.pp Normal file
View File

@ -0,0 +1,20 @@
{ %NORUN }
program tw37286;
{$mode objfpc}
var preShiftWorldDx: LongInt;
WorldDx: LongInt;
playWidth: LongInt;
procedure ShiftWorld(Dir: LongInt); inline;
begin
preShiftWorldDx:= WorldDx;
WorldDx:= WorldDx + LongInt(Dir * LongInt(playWidth));
end;
begin
ShiftWorld(-1);
end.