mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 18:00:47 -07:00
Fix some nits. (part 1 of review feedback)
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user