Fix warnings in video_core

This commit is contained in:
Lioncash 2014-09-28 11:20:06 -04:00
parent ee7cfc71bd
commit eb5054e6eb
9 changed files with 26 additions and 26 deletions

View file

@ -77,7 +77,7 @@ static void ProcessShaderCode(VertexShaderState& state) {
: nullptr;
const SwizzlePattern& swizzle = *(SwizzlePattern*)&swizzle_data[instr.common.operand_desc_id];
const bool negate_src1 = swizzle.negate;
const bool negate_src1 = (swizzle.negate != 0);
float24 src1[4] = {
src1_[(int)swizzle.GetSelectorSrc1(0)],