-
Notifications
You must be signed in to change notification settings - Fork 1
Description
I may be missing something obvious, but excuse if i am, i'm very new to all this.
Been trying to compile this via Lazarus - valkyrie and this are in the same folder, when i go to build doomrl.lpi, it failed to find vsystems.pas, so after moving all of the .pas files into the doomrl.lpi folder i built again.
it gets further this time, into vnode.pas but fails at line 972:
procedure TGNodeList.SetItem ( aIndex : DWord ; const aItem : TNode ) ;
begin
inherited SetItem( aIndex, aItem );
end;
The errors and hints it throws are:
vnode.pas(972,22) Error: function header doesn't match any method of this class "SetItem(LongWord;const TNode);"
vnode.pas(374,15) Error: Found declaration: SetItem(LongWord;const <undefined type>);
vnode.pas(985,4) Hint: "inherited" not yet supported inside inline procedure/function
vnode.pas(985,4) Hint: Inlining disabled
I'm completely new to all of this, so any help or insight would be appreciated.