1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 11:36:46 -06:00

13 lines
230 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gpu.State
{
struct Boolean32
{
private uint _value;
public static implicit operator bool(Boolean32 value)
{
return (value._value & 1) != 0;
}
}
}