Fix some nits. (part 1 of review feedback)
This commit is contained in:
parent
764e8fdde2
commit
85d0327542
3 changed files with 10 additions and 4 deletions
|
@ -100,7 +100,11 @@ namespace Ryujinx.Graphics.Texture
|
|||
{
|
||||
if (_isLinear)
|
||||
{
|
||||
return other._isLinear && _width == other._width && _height == other._height && _stride == other._stride && _bytesPerPixel == other._bytesPerPixel;
|
||||
return other._isLinear &&
|
||||
_width == other._width &&
|
||||
_height == other._height &&
|
||||
_stride == other._stride &&
|
||||
_bytesPerPixel == other._bytesPerPixel;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue