Quote:
Originally Posted by XxAZAxX
3 - In the "Record.ini" file you released there is the wording:
Code:
[Record1]
Type=FreeArc_Original
Source = {src}\Changelog.arc
Output = {app}\
Disk = 1.2
Size = 32.11 GB
in
Type = Freearc_Original
Source = {src}\Changelog.arc
Output = {app}\
Disk = 1.2
Size = 32.11 GB
Where "Type = FreeArc_Original" is wrong for it to work I had to change to: "Type = Freearc_Original".
|
It should work the same way.
Maybe there was some TAB character on the Type= line.
DiskSpan GUI generates records.ini with FreeArc_Original and other users always install games using FreeArc_Original without problems.
It is not case sensitive the type name, see that the script was used LowerCase that leaves everything in lowercase during the comparison.
Code:
function ConvertDataType(sType: String): Integer;
begin
case Trim(LowerCase(sType)) of
LowerCase('FreeArc_Original') : Result := ARC_SIMPLE;
LowerCase('7-Zip_Original') : Result := ZIP_SIMPLE;
LowerCase('WinRAR_Original') : Result := RAR_SIMPLE;
LowerCase('FreeArc_Split') : Result := ARC_MERGED;
LowerCase('7-Zip_Split') : Result := ZIP_MERGED;
LowerCase('WinRAR_Split') : Result := RAR_MERGED;
LowerCase('Split') : Result := SPLIT_PART;
LowerCase('Delta') : Result := DELTA_FILE;
end;
end;
Quote:
Originally Posted by XxAZAxX
For everything else I think it's all right, I hope I have been of help! and thanks again for all the work you do guys, and sorry for the time I stole from you! good summer to you too.
|
It's a cold winter here now!
Quote:
Originally Posted by XxAZAxX
So is this a superfluous code? that is, can it be eliminated without any problem? perfect Thanks again bro!
|
It was supposed to be used to ignore the lines of group type items, but was discontinued before it became public.