- Timestamp:
- Nov 22, 2012, 8:05:35 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/ufrmmain1.lfm
r7 r8 5 5 Width = 459 6 6 Caption = 'Lazes - Lazarus Mazes' 7 ClientHeight = 3 667 ClientHeight = 370 8 8 ClientWidth = 459 9 9 Constraints.MinHeight = 300 -
trunk/Lazes.lpi
r7 r8 48 48 <StackChecks Value="True"/> 49 49 </Checks> 50 <VerifyObjMethodCallValidity Value="True"/>51 50 <Optimizations> 52 51 <OptimizationLevel Value="0"/> -
trunk/class/maze.pas
r7 r8 226 226 for row := 0 to Height - 1 do 227 227 for col := 0 to Width - 1 do 228 FMaze[row, col].State := csEmpty;228 if FMaze[row, col].State = csVisited then FMaze[row, col].State := csEmpty; 229 229 end; 230 230
Note:
See TracChangeset
for help on using the changeset viewer.