- Made cedserver compile with FPC 2.2.3
This commit is contained in:
parent
b70f03ba2a
commit
dc932985e2
|
@ -256,13 +256,13 @@ begin
|
|||
Writeln('Configuring Paths');
|
||||
Writeln('=================');
|
||||
Write ('map [map0.mul]: ');
|
||||
Readln (FMap.MapFile);
|
||||
Readln (FMap.FMapFile);
|
||||
if FMap.MapFile = '' then FMap.MapFile := 'map0.mul';
|
||||
Write ('statics [statics0.mul]: ');
|
||||
Readln (FMap.StaticsFile);
|
||||
Readln (FMap.FStaticsFile);
|
||||
if FMap.StaticsFile = '' then FMap.StaticsFile := 'statics0.mul';
|
||||
Write ('staidx [staidx0.mul]: ');
|
||||
Readln (FMap.StaIdxFile);
|
||||
Readln (FMap.FStaIdxFile);
|
||||
if FMap.StaIdxFile = '' then FMap.StaIdxFile := 'staidx0.mul';
|
||||
Write ('tiledata [tiledata.mul]: ');
|
||||
Readln (FTiledata);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<PackageName Value="lnetbase"/>
|
||||
</Item1>
|
||||
</RequiredPackages>
|
||||
<Units Count="14">
|
||||
<Units Count="15">
|
||||
<Unit0>
|
||||
<Filename Value="cedserver.lpr"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
|
@ -100,6 +100,11 @@
|
|||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="UClientHandling"/>
|
||||
</Unit13>
|
||||
<Unit14>
|
||||
<Filename Value="../UOLib/UStatics.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="UStatics"/>
|
||||
</Unit14>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
|
|
|
@ -31,10 +31,9 @@ uses
|
|||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
SysUtils, Classes,
|
||||
lnetbase,
|
||||
UConfig, UCEDServer, URadarMap, ULargeScaleOperations, UPackets,
|
||||
UAdminHandling, UClientHandling, ULandscape, UPacketHandlers, URegions;
|
||||
SysUtils, Classes, lnetbase, UConfig, UCEDServer, URadarMap,
|
||||
ULargeScaleOperations, UPackets, UAdminHandling, UClientHandling, ULandscape,
|
||||
UPacketHandlers, URegions, UStatics;
|
||||
|
||||
{$I version.inc}
|
||||
|
||||
|
|
Loading…
Reference in New Issue