IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 24, 2010, 3:17:46 PM (16 years ago)
Author:
Paul Price
Message:

Fix syntax error.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageBackground.c

    r27066 r27067  
    5252    for (int y = 0; y < ny; y++) {
    5353        for (int x = 0; x < nx; x++) {
    54             if (!isfinite(image->data.F32[iy][ix]) ||
     54            if (!isfinite(image->data.F32[y][x]) ||
    5555                (mask && mask->data.PS_TYPE_IMAGE_MASK_DATA[iy][ix] & maskValue)) {
    5656                bad->data.U8[y][x] = 0xFF;
Note: See TracChangeset for help on using the changeset viewer.