1
0
mirror of synced 2025-01-31 12:23:52 +01:00

Don't default switch swizzle for dds

This commit is contained in:
KillzXGaming 2019-06-16 20:55:14 -04:00
parent e8283ac4ee
commit 732f3a7aeb
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -766,9 +766,11 @@ namespace Switch_Toolbox.Library
ArrayCount = DX10header.arrayFlag;
}
public bool SwitchSwizzle = true;
public bool SwitchSwizzle = false;
public override byte[] GetImageData(int ArrayLevel = 0, int MipLevel = 0)
{
if (IsAtscFormat(Format)) SwitchSwizzle = true;
if (SwitchSwizzle)
return TegraX1Swizzle.GetImageData(this, bdata, ArrayLevel, MipLevel);