Skip to content

Commit

Permalink
LineCode: fix issue in DumpProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed Jul 17, 2023
1 parent 08952f6 commit 5f2e0c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/General/LineCode.pas
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ procedure TLineCodeObj.DumpProperties(F: TFileStream; Complete: Boolean; Leaf: B
for k := 1 to NumAmpRatings do
TempStr := TempStr + floattoStrf(AmpRatings[k - 1], ffGeneral, 8, 4) + ',';
TempStr := TempStr + ']';
FSWriteln(F, Format('~ %s=%s', [PropertyName[26]]) + TempStr);
FSWriteln(F, Format('~ %s=%s', [PropertyName[26], TempStr]));
FSWriteln(F, Format('~ %s=%s', [PropertyName[27], PropertyValue[27]]));
end;
end;
Expand Down

0 comments on commit 5f2e0c0

Please sign in to comment.