small fixed
This commit is contained in:
parent
e6ed312de2
commit
c3c4697562
|
@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace AssetStudio
|
namespace AssetStudio
|
||||||
{
|
{
|
||||||
[StructLayout(LayoutKind.Sequential, Size = 4)]
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
||||||
public struct Color : IEquatable<Color>
|
public struct Color : IEquatable<Color>
|
||||||
{
|
{
|
||||||
public float R;
|
public float R;
|
||||||
|
|
|
@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace AssetStudio
|
namespace AssetStudio
|
||||||
{
|
{
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
||||||
public struct Quaternion : IEquatable<Quaternion>
|
public struct Quaternion : IEquatable<Quaternion>
|
||||||
{
|
{
|
||||||
public float X;
|
public float X;
|
||||||
|
|
Loading…
Reference in New Issue