mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 07:49:12 +02:00
Fix compilation of nds and wii OS rtl
This commit is contained in:
parent
429438fbb9
commit
f4580ff612
@ -159,7 +159,7 @@ function paramstr(l: longint) : string;
|
|||||||
begin
|
begin
|
||||||
paramstr := execpathstr;
|
paramstr := execpathstr;
|
||||||
end
|
end
|
||||||
else (l > 0) and (l < argc) then
|
else if (l > 0) and (l < argc) then
|
||||||
paramstr := strpas(argv[l])
|
paramstr := strpas(argv[l])
|
||||||
else
|
else
|
||||||
paramstr := '';
|
paramstr := '';
|
||||||
|
@ -128,7 +128,7 @@ function paramstr(l: longint) : string;
|
|||||||
begin
|
begin
|
||||||
paramstr := execpathstr;
|
paramstr := execpathstr;
|
||||||
end
|
end
|
||||||
else (l > 0) and ( l < argc ) then
|
else if (l > 0) and ( l < argc ) then
|
||||||
paramstr:=strpas(argv[l])
|
paramstr:=strpas(argv[l])
|
||||||
else
|
else
|
||||||
paramstr:='';
|
paramstr:='';
|
||||||
|
Loading…
Reference in New Issue
Block a user