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