Changeset 339 for trunk/GameServer.pas


Ignore:
Timestamp:
Apr 1, 2021, 6:12:35 PM (3 years ago)
Author:
chronos
Message:
  • Fixed: Cevo map extension ".cevo map" was not valid Windows file extension and it was not possible to associate an application with such extension. Changed to ".cevomap" without space character.
  • Added: .cevomap files associated with C-evo executable. Open map editor directly for the files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GameServer.pas

    r338 r339  
    583583  MapFile := nil;
    584584  try
    585     MapFile := TFileStream.Create(GetMapsDir + DirectorySeparator + FileName,
    586       fmOpenRead or fmShareExclusive);
     585    MapFile := TFileStream.Create(FileName, fmOpenRead or fmShareExclusive);
    587586    MapFile.Position := 0;
    588587    MapFile.read(s[1], 8); { file id }
Note: See TracChangeset for help on using the changeset viewer.