CSPspEmu.Hle.Modules.ctrl.sceCtrl.sceCtrlReadLatch C# (CSharp) Method

sceCtrlReadLatch() private method

private sceCtrlReadLatch ( SceCtrlLatch CurrentLatch ) : int
CurrentLatch SceCtrlLatch
return int
        public int sceCtrlReadLatch(SceCtrlLatch* CurrentLatch)
        {
            try
            {
                return sceCtrlPeekLatch(CurrentLatch);
            }
            finally
            {
                LastLatchData = PspController.GetSceCtrlDataAt(0);
                PspController.LatchSamplingCount = 0;
            }
        }