Hi.

The background are large image (1024 x 768 to 8192x4096)

The problem is that paint surface the change is not persistent. I was modify background, not paint over background. A¬ø How I can modify background ?


Since I change to unDelphiX I have a lot of problems when close game: "exception class EAccessViolation..." and "external exception....". With DelphiX (hori) i not have problems (but not compression in sockets and directx 6)

The version 0.81A is stable but 0.81E or latter not.
The track editor is more slow if you load a big circuit, please wait.


Asqs:

1) how can I modify background to make braking marks persistent? (without painting it in each frame)

2) anybody knows how to close a Delphix application without closing errors?

Close Procedure:
[pascal]
procedure TF_Principal.FormClose(Sender: TObject; var Action: TCloseAction);
begin
try
if Cerrando then
begin
Action := caNone;
exit;
end;
Cerrando := True;
DXTimer.Enabled := False;
DXDraw.Finalize;
DXDraw.Destroy;
DXSound.Finalize;
DXSound.Destroy;
DXSpriteEngine.Destroy;
DXImageList.Destroy;
DXPlay.Destroy;
DXTimer.Destroy;
DXInput.Destroy;
except
end;
end;
[/pascal]

Thanks