Changeset 122 for oup


Ignore:
Timestamp:
Mar 23, 2007, 2:41:15 AM (18 years ago)
Author:
alloc
Message:
 
Location:
oup/current/Global
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • oup/current/Global/OniImgClass.pas

    r118 r122  
    611611      x    := x div 2;
    612612      y    := y div 2;
    613       size := (size + x * y * bpp) div 8;
     613      size := size + (x * y * bpp) div 8;
    614614    until (x = 1) or (y = 1);
    615615  end;
  • oup/current/Global/RawList.pas

    r118 r122  
    341341      x    := x div 2;
    342342      y    := y div 2;
    343       datasize := (datasize + x * y * bpp) div 8;
     343      datasize := datasize + (x * y * bpp) div 8;
    344344    until (x = 1) or (y = 1);
    345345  end;
Note: See TracChangeset for help on using the changeset viewer.