CSPspEmu.Hle.Managers.HleInterruptManager.sceKernelCpuSuspendIntr C# (CSharp) Method

sceKernelCpuSuspendIntr() public method

public sceKernelCpuSuspendIntr ( ) : uint
return uint
        public uint sceKernelCpuSuspendIntr()
        {
            try
            {
                return (uint)(Enabled ? 1 : 0);
            }
            finally
            {
                Enabled = false;
            }
        }