Changeset c0da24fe8dbdd5a0db10043940c85afb3b54b542
- Timestamp:
- 08/08/07 11:25:42
(1 year ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1186565142 +0000
- git-parent:
[cbbe174a03104b9d0ad1429a34a0ade1b3a1c92f]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1186565142 +0000
- Message:
Use parenthesis to make it more readible.`
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9a1b826 |
rc0da24f |
|
| 1473 | 1473 | p_dst_y[i_x] = p_pal[p_src2[i_x]][0]; |
|---|
| 1474 | 1474 | |
|---|
| 1475 | | if( b_even_scanline && i_x % 2 == 0 ) |
|---|
| | 1475 | if( b_even_scanline && ((i_x % 2) == 0) ) |
|---|
| 1476 | 1476 | { |
|---|
| 1477 | 1477 | p_dst_u[i_x/2] = p_pal[p_src2[i_x]][1]; |
|---|
| … | … | |
| 1486 | 1486 | >> TRANS_BITS; |
|---|
| 1487 | 1487 | |
|---|
| 1488 | | if( b_even_scanline && i_x % 2 == 0 ) |
|---|
| | 1488 | if( b_even_scanline && ((i_x % 2) == 0) ) |
|---|
| 1489 | 1489 | { |
|---|
| 1490 | 1490 | p_dst_u[i_x/2] = ( (uint16_t)p_pal[p_src2[i_x]][1] * i_trans + |
|---|