Ignore:
Timestamp:
Jan 15, 2017, 4:12:10 PM (7 years ago)
Author:
chronos
Message:
  • Modified: All graphics images converted from BMP to PNG.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/Tribes.pas

    r38 r73  
    301301        Item := Get;
    302302        sympix := GetNum;
    303         symHGr := LoadGraphicSet(Item);
     303        symHGr := LoadGraphicSet(Item + '.png');
    304304      end
    305305    end;
     
    425425                  end
    426426              end;
    427             cHGr := LoadGraphicSet(Item);
     427            cHGr := LoadGraphicSet(Item + '.png');
    428428            for x := 0 to 3 do
    429429              with CityPicture[x] do
     
    445445          else
    446446          begin
    447             faceHGr := LoadGraphicSet(Item);
     447            faceHGr := LoadGraphicSet(Item + '.png');
    448448            facepix := GetNum;
    449449            if GrExt[faceHGr].Data.Canvas.Pixels[facepix mod 10 * 65,
     
    477477            dec(i);
    478478          assert(i >= 0);
    479           assert(PictureList[i].HGr = LoadGraphicSet(GrName));
     479          assert(PictureList[i].HGr = LoadGraphicSet(GrName + '.png'));
    480480          assert(PictureList[i].pix = pix);
    481481          ModelPicture[mix].HGr := PictureList[i].HGr;
     
    487487          with ModelPicture[mix] do
    488488          begin
    489             HGr := LoadGraphicSet(GrName);
     489            HGr := LoadGraphicSet(GrName + '.png');
    490490            pix := Info.pix;
    491491            inc(GrExt[HGr].pixUsed[pix]);
Note: See TracChangeset for help on using the changeset viewer.