Fix for strict compiler setup

This commit is contained in:
Sergey Sharybin 2012-10-25 13:12:37 +00:00
parent 575886f37c
commit 15362e1c02

@ -176,7 +176,7 @@ int FlipDXTCImage(unsigned int width, unsigned int height, unsigned int levels,
if(width == 0 || height == 0)
return 0;
// height must be a power-of-two
if(height & (height - 1) != 0)
if((height & (height - 1)) != 0)
return 0;
FlipBlockFunction full_block_function;