mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 06:20:24 +00:00
Quick fix
This commit is contained in:
parent
31f6b13cd5
commit
285eb3a028
7 changed files with 5 additions and 5 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -20,7 +20,7 @@ namespace Syroot.IOExtension
|
|||
{
|
||||
// ---- CONSTANTS ----------------------------------------------------------------------------------------------
|
||||
|
||||
/// <summary>
|
||||
/* /// <summary>
|
||||
/// Represents the smallest positive <see cref="Half"/> value greater than zero.
|
||||
/// </summary>
|
||||
public static readonly Half Epsilon = new Half(1);
|
||||
|
@ -48,7 +48,7 @@ namespace Syroot.IOExtension
|
|||
/// <summary>
|
||||
/// Represents positive infinity.
|
||||
/// </summary>
|
||||
public static readonly Half PositiveInfinity = new Half(0b01111100_00000000);
|
||||
public static readonly Half PositiveInfinity = new Half(0b01111100_00000000);*/
|
||||
|
||||
private static readonly uint[] _mantissaTable;
|
||||
private static readonly uint[] _exponentTable;
|
||||
|
@ -394,7 +394,7 @@ namespace Syroot.IOExtension
|
|||
return Equals(Raw == other.Raw);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/* /// <summary>
|
||||
/// Returns a value indicating whether the specified number evaluates to not a number (<see cref="NaN"/>).
|
||||
/// </summary>
|
||||
/// <param name="half">A half-precision floating-point number.</param>
|
||||
|
@ -433,6 +433,6 @@ namespace Syroot.IOExtension
|
|||
public static bool IsPositiveInfinity(Half half)
|
||||
{
|
||||
return half.Raw == PositiveInfinity.Raw;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
|
|
@ -112,7 +112,7 @@ namespace Switch_Toolbox.Library
|
|||
}
|
||||
}
|
||||
|
||||
public virtual string FileSize => STMath.GetFileSize(FileData.Length, 4);
|
||||
public virtual string FileSize { get {return STMath.GetFileSize(FileData.Length, 4); } }
|
||||
|
||||
[Browsable(false)]
|
||||
public IFileFormat FileFormat = null; //Format attached for saving
|
||||
|
|
Loading…
Reference in a new issue