Changeset 545 for trunk/LocalPlayer


Ignore:
Timestamp:
Apr 17, 2024, 10:23:55 AM (2 weeks ago)
Author:
chronos
Message:
  • Fixed: Incorrect range checking in scaled bitmap drawing method.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/Term.pas

    r537 r545  
    26972697
    26982698        MiniMap.Size := Point(G.lx, G.ly);
    2699         for I := 0 to nPl - 1 do
    2700         begin
     2699        MiniMap.Bitmap.SetSize(MiniMap.Size.X * 2, MiniMap.Size.Y);
     2700
     2701        for I := 0 to nPl - 1 do begin
    27012702          Tribe[I] := nil;
    27022703          TribeOriginal[I] := False;
     
    66196620            Application.ProcessMessages;
    66206621          Sleep(1);
    6621           Inc(SliceCount)
     6622          Inc(SliceCount);
    66226623        end;
    66236624        Ticks := NowPrecise;
Note: See TracChangeset for help on using the changeset viewer.