mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 02:32:19 -05:00
MML: Increase function limit from 400 to 500.
This commit is contained in:
parent
8be94c404a
commit
932e4950d3
@ -539,7 +539,7 @@ end;
|
|||||||
|
|
||||||
procedure AddFunction( Ptr : Pointer; DeclStr : String);
|
procedure AddFunction( Ptr : Pointer; DeclStr : String);
|
||||||
begin;
|
begin;
|
||||||
if c >= 400 then
|
if c >= 500 then
|
||||||
raise exception.create('PSThread.LoadMethods: Exported more than 400 functions');
|
raise exception.create('PSThread.LoadMethods: Exported more than 400 functions');
|
||||||
Result[c].FuncDecl:= DeclStr;
|
Result[c].FuncDecl:= DeclStr;
|
||||||
Result[c].FuncPtr:= Ptr;
|
Result[c].FuncPtr:= Ptr;
|
||||||
@ -550,7 +550,7 @@ end;
|
|||||||
begin
|
begin
|
||||||
c := 0;
|
c := 0;
|
||||||
CurrSection := 'Other';
|
CurrSection := 'Other';
|
||||||
SetLength(Result,400);
|
SetLength(Result, 500);
|
||||||
|
|
||||||
{$i PSInc/psexportedmethods.inc}
|
{$i PSInc/psexportedmethods.inc}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user