Changeset 4134

Show
Ignore:
Timestamp:
2006年08月05日 01時29分08秒 (2 years ago)
Author:
miyoshi
Message:

(Fmw32_get_device_capability): Return 'full if the
pixel depth is greater than or equal to 24 bits.

Files:

Legend:

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

    r4133 r4134  
     12006-08-05  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * mw32term.c (Fmw32_get_device_capability): Return 'full if the 
     4        pixel depth is greater than or equal to 24 bits. 
     5 
    162006-08-01  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    27 
  • trunk/src/mw32term.c

    r4133 r4134  
    69426942      int val = (GetDeviceCaps (hdc, BITSPIXEL) 
    69436943                 * GetDeviceCaps (hdc, PLANES)); 
    6944       if (val > 24) 
     6944      if (val >= 24) 
    69456945        ret = intern ("full"); 
    69466946      else