| # | Line 681 | Line 681 | colormap map; | |
|---|---|---|
| 681 | register int i, val; | |
| 682 | ||
| 683 | for (i = 0; i < 256; i++) { | |
| 684 | < | val = pow(i/256.0, 1.0/gamcor) * 256.0; |
| 684 | > | val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0; |
| 685 | map[0][i] = map[1][i] = map[2][i] = val; | |
| 686 | } | |
| 687 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |