diff --git a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs index 7330456ba5..8ea9a81f3e 100644 --- a/BizHawk.Client.EmuHawk/config/ProfileConfig.cs +++ b/BizHawk.Client.EmuHawk/config/ProfileConfig.cs @@ -136,7 +136,6 @@ namespace BizHawk.Client.EmuHawk // N64 var n64Settings = GetSyncSettings(); - n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Z64_hlevideo; n64Settings.Core = N64SyncSettings.CoreType.Pure_Interpret; Global.Config.N64UseCircularAnalogConstraint = true; PutSyncSettings(n64Settings); @@ -191,7 +190,6 @@ namespace BizHawk.Client.EmuHawk // N64 var n64Settings = GetSyncSettings(); - n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Z64_hlevideo; n64Settings.Core = N64SyncSettings.CoreType.Pure_Interpret; Global.Config.N64UseCircularAnalogConstraint = false; PutSyncSettings(n64Settings); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs index 41cd314c7a..369366ed48 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs @@ -118,9 +118,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 case N64SyncSettings.RspType.Rsp_Hle: rsp = "mupen64plus-rsp-hle.dll"; break; - case N64SyncSettings.RspType.Rsp_Z64_hlevideo: - rsp = "mupen64plus-rsp-z64-hlevideo.dll"; - break; case N64SyncSettings.RspType.Rsp_cxd4: rsp = "mupen64plus-rsp-cxd4.dll"; break; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64SyncSettings.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64SyncSettings.cs index 22b72622c4..d400465d3e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64SyncSettings.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64SyncSettings.cs @@ -95,9 +95,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 [Description("Hle")] Rsp_Hle = 0, - [Description("Z64 Hle Video")] - Rsp_Z64_hlevideo = 1, - [Description("cxd4 LLE")] Rsp_cxd4 = 2 }