Results 1 to 10 of 63

Thread: 2nd PGD Challenge - "Platformation"

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #12
    When it crashes and I hit break, it stops at this line:

    Code:
    method GameApplication.InitGame;
    begin
      FScreenWidth  := cScreenWidth;
      FScreenHeight := cScreenHeight;
    
      FLevel := new GameLevel; **** <-------------------  stops here ---------  *******
      FLevel.SetBounds(10,10,cTileWidth,cTileHeight);
    
      FLevel.RegisterRenderTileRoutine(GameTile.cTileTheme_Earth ,@RenderTile_Ground);
      FLevel.RegisterRenderTileRoutine(GameTile.cTileTheme_Air   ,@RenderTile_Ground);
      FLevel.RegisterRenderTileRoutine(GameTile.cTileTheme_Fire  ,@RenderTile_Ground);
      FLevel.RegisterRenderTileRoutine(GameTile.cTileTheme_Water ,@RenderTile_Ground);
    end;
    HELP!!!
    Last edited by paul_nicholls; 16-04-2012 at 03:24 AM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •