Ignore:
Timestamp:
Jan 10, 2026, 12:15:35 PM (4 weeks ago)
Author:
chronos
Message:

Merged revision(s) 705-716 from trunk:

  • Fixed: Subversion properties.
  • Fixed: Better start screen location calculation for lower than 800x600 resolutions to make visible entire window.
  • Fixed: Memory overflow in minimap drawing with some higher DPI settings.
  • Fixed: Crashes with mini map drawing in Start screen with some DPI resolutions.
  • Added: Enter key confirms battle dialog window.
  • Fixed: Potential battle dialog drawing issue.
  • Modified: Code cleanup.
  • Fixed: Disable auto selection of input text in message dialog.
  • Fixed: Edit boxes to have black background and blue selection.
  • Fixed: Automatically create Saved and Maps user data directories if they don't exist yet.
  • Modified: Code cleanup.
  • Fixed: Wrong unit models opened after click on Military report foreign units.
  • Modified: Do not store .png file extension in graphics names in book files. This is for compatibility with older C-evo versions.
  • Fixed: Support both books with graphics name with and without .png file extensions.
Location:
branches/zoom
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/zoom

  • branches/zoom/GameServer.pas

    r683 r717  
    606606      end;
    607607
     608  ForceDirectories(ExtractFileDir(FileName));
    608609  if Auto and AutoSaveExists then // append to existing file
    609610    LogFile := TFileStream.Create(FileName, fmOpenReadWrite or fmShareExclusive)
     
    32903291          Map.MaxTurn := MaxTurn;
    32913292          Move(RealMap, Map.Tiles[0], MapSize * 4);
     3293          ForceDirectories(ExtractFileDir(MapFileName));
    32923294          Map.SaveToFile(MapFileName);
    32933295          FreeAndNil(Map);
Note: See TracChangeset for help on using the changeset viewer.