Skip to content

Commit

Permalink
Now compiles with resizeable screen and dynamic rects
Browse files Browse the repository at this point in the history
  • Loading branch information
jwvhewitt committed Sep 10, 2016
1 parent 8c8e0c2 commit 68d7228
Show file tree
Hide file tree
Showing 6 changed files with 301 additions and 215 deletions.
2 changes: 1 addition & 1 deletion arenascript.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5612,7 +5612,7 @@ implementation
begin
{ Start by allocating the menu. }
IntMenu := CreateRPGMenu( MenuItem , MenuSelect , ZONE_InteractMenu );
IntMenu^.Mode := RPMEscCancel;
{IntMenu^.Mode := RPMEscCancel;}

{ If this persona has been marked as "NoEscape", make sure the PC }
{ can't quit the conversation just by pressing ESC. }
Expand Down
14 changes: 7 additions & 7 deletions gh2arena.pp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ interface
{$ENDIF}

const
{ ArenaMissionInfo moved to playwright.pp }
{ ArenaMissionInfo moved to playwright.pp }

NAG_MissionCoupon = 24; { Certain missions can only be taken a set number }
{ of times. }
Expand Down Expand Up @@ -2024,12 +2024,12 @@ procedure ExamineCharacters( HQCamp: CampaignPtr );
Egg,PC,S: GearPtr;
begin
Egg := CharacterCreator( HQFac( Camp ) );
if Egg <> Nil then begin
PC := Nil;
while Egg^.SubCom <> Nil do begin
S := Egg^.SubCom;
DelinkGear( Egg^.SubCom , S );
AppendGear( PC , S );
if Egg <> Nil then begin
PC := Nil;
while Egg^.SubCom <> Nil do begin
S := Egg^.SubCom;
DelinkGear( Egg^.SubCom , S );
AppendGear( PC , S );
end;
DisposeGear( Egg );
StripAllMecha( PC );
Expand Down
Loading

0 comments on commit 68d7228

Please sign in to comment.