From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs (limited to 'Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs') diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs b/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs deleted file mode 100644 index c982347a..00000000 --- a/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace Ryujinx.Graphics.Gpu.Engine.Types -{ - /// - /// Boolean value, stored as a 32-bits integer in memory. - /// - struct Boolean32 - { -#pragma warning disable CS0649 - private uint _value; -#pragma warning restore CS0649 - - public static implicit operator bool(Boolean32 value) - { - return (value._value & 1) != 0; - } - } -} -- cgit v1.2.3