Changeset 660 for trunk/Start.pas


Ignore:
Timestamp:
Jul 4, 2025, 9:07:01 PM (14 hours ago)
Author:
chronos
Message:
  • Fixed: Do not process keyboard input during unit attack on Linux.
  • Fixed: Limit world size loaded from registry.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Start.pas

    r648 r660  
    389389    if ValueExists('WorldSize') then WorldSize := Reg.ReadInteger('WorldSize')
    390390      else WorldSize := DefaultWorldSize;
     391    if WorldSize > MaxWorldSize then WorldSize := MaxWorldSize;
     392    if WorldSize > 0 then WorldSize := 0;
    391393    if ValueExists('LandMass') then StartLandMass := Reg.ReadInteger('LandMass')
    392394      else StartLandMass := DefaultLandMass;
Note: See TracChangeset for help on using the changeset viewer.