fix for access violation caused by large MASTER.SCP

1 post / 0 new
4X6GP
fix for access violation caused by large MASTER.SCP

In case you can compile the program, here is a fix for the problem. In module dData.pas, function TdmData.LoadMasterSCP change the line

if i>80000 then
SetLength(aSCP,100000)

to
if i>80000 then
SetLength(aSCP,200000)

There may be a better solution, so I'm waiting to get the official fix from the developers. But this did the job for me.

Victor 4X6GP