From 9ce5d1bf3769bed7bf377fbe6a2426ac1eaab183 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 13 Dec 2014 13:50:36 +0000 Subject: [PATCH] PSX - add the IInputPollable service so that the lag information actually gets used by the client --- BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 7125c0d82e..a86d33b316 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -21,7 +21,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX isPorted: true, isReleased: false )] - public unsafe class Octoshock : IEmulator, IVideoProvider, ISyncSoundProvider, IMemoryDomains, ISaveRam, IStatable, IDriveLight + public unsafe class Octoshock : IEmulator, IVideoProvider, ISyncSoundProvider, IMemoryDomains, ISaveRam, IStatable, IDriveLight, IInputPollable { public string SystemId { get { return "PSX"; } } @@ -256,6 +256,8 @@ namespace BizHawk.Emulation.Cores.Sony.PSX public IEmulatorServiceProvider ServiceProvider { get; private set; } + public IInputCallbackSystem InputCallbacks { get { throw new NotImplementedException(); } } + public bool DriveLightEnabled { get; private set; } public bool DriveLightOn { get; private set; }