CSPspEmu.Hle.Modules.interruptman.InterruptManager.sceKernelEnableSubIntr C# (CSharp) Method

sceKernelEnableSubIntr() private method

private sceKernelEnableSubIntr ( PspInterrupts PspInterrupt, int HandlerIndex ) : int
PspInterrupt PspInterrupts
HandlerIndex int
return int
        public int sceKernelEnableSubIntr(PspInterrupts PspInterrupt, int HandlerIndex)
        {
            CheckImplementedInterruptType(PspInterrupt);

            var HleSubinterruptHandler = HleInterruptManager.GetInterruptHandler(PspInterrupt).SubinterruptHandlers[HandlerIndex];
            {
                HleSubinterruptHandler.Enabled = true;
            }

            return 0;
        }