Fix some nits. (part 1 of review feedback)

This commit is contained in:
riperiperi
2020-05-26 23:43:03 +01:00
parent 764e8fdde2
commit 85d0327542
3 changed files with 10 additions and 4 deletions

View File

@ -118,7 +118,11 @@ namespace Ryujinx.Graphics.Texture
public bool LayoutMatches(BlockLinearLayout other)
{
return _robSize == other._robSize && _sliceSize == other._sliceSize && _texBpp == other._texBpp && _bhMask == other._bhMask && _bdMask == other._bdMask;
return _robSize == other._robSize &&
_sliceSize == other._sliceSize &&
_texBpp == other._texBpp &&
_bhMask == other._bhMask &&
_bdMask == other._bdMask;
}
// Functions for built in iteration.