IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23535 for trunk/ppImage/src


Ignore:
Timestamp:
Mar 25, 2009, 3:26:30 PM (17 years ago)
Author:
bills
Message:

look up mask with new name "LOW" if not found
look up "BAD" (for backward compatability)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageSetMaskBits.c

    r23534 r23535  
    2828    // mask for below-range data  (default to RANGE if not defined)
    2929    options->badMask = pmConfigMaskGet("LOW", config);
     30    if (!options->badMask) {
     31        // XXX look up old name for backward compatability
     32        options->badMask = pmConfigMaskGet("BAD", config);
     33    }
    3034    psAssert (options->badMask, "low mask not set");
    3135
Note: See TracChangeset for help on using the changeset viewer.