home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
091.LISTBUST.INC
< prev
next >
Wrap
Text File
|
1992-07-12
|
537b
|
22 lines
procedure ListBusts;
var
p : portindex;
i : integer;
dummy : text;
begin
i := 0;
SortPortRecs( space.ports, bust );
for p := 1 to space.ports.top do
with space.ports.data[p] do
begin
if bustdate > 0 then
begin
DisplaySector( where, ' busted ', dateword - bustdate, false, dummy );
i := i + 1;
if i mod 20 = 0 then
if not prompt('--more--') then
exit;
end; {if}
end; {for with}
end; {listbusts}