Fixed precedence warning in test suite for pixels.
This commit is contained in:
parent
293da630b8
commit
bb1f191c0d
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ pixels_calcGammaRamp(void *arg)
|
|||
SDLTest_AssertCheck(ramp[i] == 0, "Validate value at position %d; expected: 0, got: %d", i, ramp[i]);
|
||||
break;
|
||||
case 1:
|
||||
SDLTest_AssertCheck(ramp[i] == (i << 8) | i, "Validate value at position %d; expected: %d, got: %d", i, (i << 8) | i, ramp[i]);
|
||||
SDLTest_AssertCheck(ramp[i] == ((i << 8) | i), "Validate value at position %d; expected: %d, got: %d", i, (i << 8) | i, ramp[i]);
|
||||
break;
|
||||
case 2:
|
||||
case 3:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue