Changeset 531 for trunk/Start.pas


Ignore:
Timestamp:
Mar 27, 2024, 12:31:14 PM (6 weeks ago)
Author:
chronos
Message:
  • Modified: Code cleanup.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Start.pas

    r520 r531  
    16231623  NewName: string;
    16241624  F: file;
    1625   ok: Boolean;
     1625  Ok: Boolean;
    16261626  MapPictureFileName: string;
    16271627begin
     
    16521652        AssignFile(F, GetMapsDir + DirectorySeparator + List.Items[List.ItemIndex] +
    16531653          CevoMapExt);
    1654       ok := True;
     1654      Ok := True;
    16551655      try
    16561656        if Page = pgLoad then
     
    16601660      except
    16611661        // Play('INVALID');
    1662         ok := False;
     1662        Ok := False;
    16631663      end;
    16641664      if Page <> pgLoad then begin
     
    16741674        end;
    16751675      end;
    1676       if ok then begin
     1676      if Ok then begin
    16771677        if Page = pgLoad then
    16781678          FormerGames[List.ItemIndex] := NewName
Note: See TracChangeset for help on using the changeset viewer.