Browse Source

Increase size of Param field of TSwitchItem object, to avoid truncation for -Cploongarch64 option

Pierre Muller 1 year ago
parent
commit
1f8865454b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ide/fpswitch.pas

+ 1 - 1
packages/ide/fpswitch.pas

@@ -50,7 +50,7 @@ type
     TSwitchItem = object(TObject)
       Typ       : TSwitchItemTyp;
       Name      : string[50];
-      Param     : string[10];
+      Param     : string[30];
       ParamID   : TParamID;
       constructor Init(const n,p:string; AID: TParamID);
       function  NeedParam:boolean;virtual;