mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
parent
43d66a4ac8
commit
fbb8e161fa
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
20
tests/webtbs/tw37286.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user