diff --git a/File_Format_Library/FileFormats/Layout/BFLYT.cs b/File_Format_Library/FileFormats/Layout/BFLYT.cs index c67f29e1..d9f4f480 100644 --- a/File_Format_Library/FileFormats/Layout/BFLYT.cs +++ b/File_Format_Library/FileFormats/Layout/BFLYT.cs @@ -321,7 +321,7 @@ namespace FirstPlugin public OriginX HorizontalAlignment { - get => (OriginX)((TextAlignment >> 2) & 0x3); + get { return (OriginX)((TextAlignment >> 2) & 0x3); } set { TextAlignment &= unchecked((byte)(~0xC)); @@ -331,7 +331,7 @@ namespace FirstPlugin public OriginX VerticalAlignment { - get => (OriginX)((TextAlignment) & 0x3); + get { return (OriginX)((TextAlignment) & 0x3); } set { TextAlignment &= unchecked((byte)(~0x3)); @@ -624,7 +624,7 @@ namespace FirstPlugin public OriginX originX { - get => (OriginX)((_flags2 & 0xC0) >> 6); + get { return (OriginX)((_flags2 & 0xC0) >> 6); } set { _flags2 &= unchecked((byte)(~0xC0)); @@ -634,7 +634,7 @@ namespace FirstPlugin public OriginY originY { - get => (OriginY)((_flags2 & 0x30) >> 4); + get { return (OriginY)((_flags2 & 0x30) >> 4); } set { _flags2 &= unchecked((byte)(~0x30)); @@ -644,7 +644,7 @@ namespace FirstPlugin public OriginX ParentOriginX { - get => (OriginX)((_flags2 & 0xC) >> 2); + get { return (OriginX)((_flags2 & 0xC) >> 2); } set { _flags2 &= unchecked((byte)(~0xC)); @@ -654,7 +654,7 @@ namespace FirstPlugin public OriginY ParentOriginY { - get => (OriginY)((_flags2 & 0x3)); + get { return (OriginY)((_flags2 & 0x3)); } set { _flags2 &= unchecked((byte)(~0x3)); diff --git a/Toolbox/Lib/Syroot.NintenTools.Bfres.dll b/Toolbox/Lib/Syroot.NintenTools.Bfres.dll index b398c199..5f2ae8cf 100644 Binary files a/Toolbox/Lib/Syroot.NintenTools.Bfres.dll and b/Toolbox/Lib/Syroot.NintenTools.Bfres.dll differ diff --git a/Toolbox/Lib/Syroot.NintenTools.Bfres.pdb b/Toolbox/Lib/Syroot.NintenTools.Bfres.pdb index ede065b7..40870e29 100644 Binary files a/Toolbox/Lib/Syroot.NintenTools.Bfres.pdb and b/Toolbox/Lib/Syroot.NintenTools.Bfres.pdb differ diff --git a/Toolbox/Lib/Syroot.NintenTools.Bfres.xml b/Toolbox/Lib/Syroot.NintenTools.Bfres.xml index 645500dd..f49bf760 100644 --- a/Toolbox/Lib/Syroot.NintenTools.Bfres.xml +++ b/Toolbox/Lib/Syroot.NintenTools.Bfres.xml @@ -5580,11 +5580,6 @@ Gets or sets the pixel swizzling stride. - - - Gets or sets the desired texture data buffer format. - - Gets or sets the desired texture data buffer format.