Changeset 32 for trunk/xtactics.lpr


Ignore:
Timestamp:
Mar 4, 2014, 11:40:01 PM (10 years ago)
Author:
chronos
Message:
  • Fixed: Do not update player move settings if not comfirmed by hitting Ok button.
  • Modified: Automatic pairing player moves objects with CellFrom and CellTo.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        44xtactics.res
        55xtactics.dbg
         6heaptrclog.trc
  • trunk/xtactics.lpr

    r29 r32  
    99  Interfaces, // this includes the LCL widgetset
    1010  Forms, UFormMain, UGame, UFormNew, UFormMove, UCore, UFormPlayer
    11   { you can add units after this };
     11  { you can add units after this },
     12  SysUtils;
    1213
    1314{$R *.res}
    1415
     16{$IFDEF DEBUG}
     17const
     18  HeapTraceLog = 'heaptrclog.trc';
     19{$ENDIF}
     20
     21
    1522begin
     23  {$IFDEF DEBUG}
     24  // Heap trace
     25  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     26  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     27  {$ENDIF}
     28
    1629  RequireDerivedFormResource := True;
    1730  Application.Initialize;
Note: See TracChangeset for help on using the changeset viewer.