whitespace fix only

This commit is contained in:
kd-11 2018-12-17 16:36:17 +03:00 committed by kd-11
parent 15d5507154
commit 362eea09a1
4 changed files with 10 additions and 10 deletions

View file

@ -443,7 +443,7 @@ namespace gl
if (xfer_info.dst_is_typeless)
{
//Transfer contents from typeless dst back to original dst
// Transfer contents from typeless dst back to original dst
copy_typeless(dst, typeless_dst.get());
}

View file

@ -2253,10 +2253,10 @@ struct registers_decoder<NV3089_DS_DX>
return 0;
}
if ((s32)val < 0)
if ((s32)val < 0)
{
return 1.f / (((val & ~(1<<31)) / 1048576.f) - 2048.f);
}
return 1.f / (((val & ~(1<<31)) / 1048576.f) - 2048.f);
}
return 1048576.f / val;
}
@ -2291,12 +2291,12 @@ struct registers_decoder<NV3089_DT_DY>
return 0;
}
if ((s32)val < 0)
if ((s32)val < 0)
{
return 1.f / (((val & ~(1<<31)) / 1048576.f) - 2048.f);
}
return 1.f / (((val & ~(1<<31)) / 1048576.f) - 2048.f);
}
return 1048576.f / val;
return 1048576.f / val;
}
};