mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
BFRES : Save .mc based on gpu flags to prevent on animations
This commit is contained in:
parent
75974ef479
commit
765c09c8f1
1 changed files with 1 additions and 1 deletions
|
@ -811,7 +811,7 @@ namespace FirstPlugin
|
|||
|
||||
var externalFlags = MeshCodec.GetExternalFlags(stream);
|
||||
//External flags used
|
||||
if (externalFlags != 0 || this.FileName.EndsWith(".mc"))
|
||||
if (externalFlags.HasFlag(MeshCodec.ExternalFlags.HasExternalGPU) || this.FileName.EndsWith(".mc"))
|
||||
{
|
||||
//Ensure it uses mc compressor for save
|
||||
this.IFileInfo.FileIsCompressed = true;
|
||||
|
|
Loading…
Reference in a new issue