Changeset 34


Ignore:
Timestamp:
Jan 8, 2017, 11:54:21 PM (7 years ago)
Author:
chronos
Message:
  • Fixed: FillRect used wrong variables Width and Height.
Location:
trunk/LocalPlayer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer

    • Property svn:ignore
      •  

        old new  
        11__history
         2__recovery
  • trunk/LocalPlayer/IsoEngine.pas

    r33 r34  
    470470    exit;
    471471
    472   with FOutput.Canvas do
    473   begin
    474     Brush.Color := Color;
    475     FillRect(Rect(x, y, x + Width, y + Height));
    476     Brush.Style := bsClear;
    477   end
     472  FOutput.Canvas.Brush.Color := Color;
     473  FOutput.Canvas.FillRect(Rect(x, y, x + Width, y + Height));
     474  FOutput.Canvas.Brush.Style := bsClear;
    478475end;
    479476
Note: See TracChangeset for help on using the changeset viewer.