1
0
mirror of synced 2025-01-19 01:14:08 +01:00

Fix some batch exporting issues

This commit is contained in:
KillzXGaming 2019-07-06 17:57:56 -04:00
parent 61ef67ea29
commit 0c6d12c1c2
10 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@ -239,6 +239,7 @@ namespace FirstPlugin
{ ".ftxb", "bntx" },
{ ".fsnb", "bfres" },
{ ".fmab", "bfres" },
{ ".ftpb", "bfres" },
};
}
}

View File

@ -9,7 +9,7 @@ using Switch_Toolbox.Library;
using Switch_Toolbox.Library.IO;
using Switch_Toolbox.Library.Forms;
namespace FirstPlugin
namespace FirstPlugin.Old
{
public class SARC : TreeNodeFile, IFileFormat
{

View File

@ -518,6 +518,8 @@ namespace FirstPlugin
return TEX_FORMAT.BC4_UNORM;
case BFLIMFormat.BC5_UNORM:
return TEX_FORMAT.BC5_UNORM;
case BFLIMFormat.RGB565_Indirect_UNORM:
return TEX_FORMAT.B5G6R5_UNORM;
default:
throw new Exception("Unsupported format " + format);
}

View File

@ -329,7 +329,6 @@ namespace FirstPlugin
Formats.Add(typeof(GFBMDL));
Formats.Add(typeof(Turbo.Course_MapCamera_bin));
Formats.Add(typeof(Turbo.PartsBIN));
Formats.Add(typeof(SDF));
Formats.Add(typeof(IStorage));
Formats.Add(typeof(NCA));