diff --git a/BrawlLib/SSBB/ResourceNodes/Graphics/TEX0Node.cs b/BrawlLib/SSBB/ResourceNodes/Graphics/TEX0Node.cs index 13ee962d9..d6c2e435c 100644 --- a/BrawlLib/SSBB/ResourceNodes/Graphics/TEX0Node.cs +++ b/BrawlLib/SSBB/ResourceNodes/Graphics/TEX0Node.cs @@ -139,7 +139,7 @@ private string BuildDolphinTextureName() if (LevelOfDetail > 1) name += "m_"; name += $"{_textureHash}_"; - if (HasPalette) + if (HasPalette && !string.IsNullOrEmpty(_paletteHash)) name += $"{_paletteHash}_"; else if (Format == WiiPixelFormat.CI4 || Format == WiiPixelFormat.CI8) name += "$_";