Changeset 531 for trunk/Start.pas
- Timestamp:
- Mar 27, 2024, 12:31:14 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Start.pas
r520 r531 1623 1623 NewName: string; 1624 1624 F: file; 1625 ok: Boolean;1625 Ok: Boolean; 1626 1626 MapPictureFileName: string; 1627 1627 begin … … 1652 1652 AssignFile(F, GetMapsDir + DirectorySeparator + List.Items[List.ItemIndex] + 1653 1653 CevoMapExt); 1654 ok := True;1654 Ok := True; 1655 1655 try 1656 1656 if Page = pgLoad then … … 1660 1660 except 1661 1661 // Play('INVALID'); 1662 ok := False;1662 Ok := False; 1663 1663 end; 1664 1664 if Page <> pgLoad then begin … … 1674 1674 end; 1675 1675 end; 1676 if ok then begin1676 if Ok then begin 1677 1677 if Page = pgLoad then 1678 1678 FormerGames[List.ItemIndex] := NewName
Note:
See TracChangeset
for help on using the changeset viewer.