Changeset 4137

Show
Ignore:
Timestamp:
08/10/06 10:28:53 (2 years ago)
Author:
miyoshi
Message:

(load_in_memory_image): Use 0x80 instead of 0xff as a
foreground pixel value.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4136 r4137  
     12006-08-10  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * image.c (load_in_memory_image): Use 0x80 instead of 0xff as a 
     4        foreground pixel value. 
     5 
    162006-08-05  YAMAZAKI Katsuhiro <yamazaki-k@mwe.biglobe.ne.jp> 
    27 
  • trunk/src/image.c

    r4119 r4137  
    1017110171              bits = bitmap[k++]; 
    1017210172            } 
    10173           *p++ = bits & 0x01 ? 0x00 : 0xff
     10173          *p++ = bits & 0x01 ? 0x00 : 0x80
    1017410174          bits >>= 1; 
    1017510175        }