Skip to content

Commit

Permalink
Fix texture errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebane1 committed Sep 22, 2023
1 parent 61372d9 commit a71071f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Penumbra/Import/Textures/BaseImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public TextureType Type
=> Image switch
{
null => TextureType.Unknown,
ScratchImage => TextureType.AsIsDds,
ScratchImage => TextureType.Dds,
Image<Rgba32> => TextureType.Png,
_ => TextureType.Unknown,
};
Expand Down
1 change: 0 additions & 1 deletion Penumbra/Import/Textures/TextureManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using OtterGui.Log;
using OtterGui.Tasks;
using OtterTex;
using Penumbra.Api.Enums;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.PixelFormats;
Expand Down

0 comments on commit a71071f

Please sign in to comment.