N64 - include a 64bit version of mupen64plus-rsp-cxd4.dll, rip out Rsp_Z64_hlevideo since it is giving us no value added, as it was intended to go with the z64 video plugin (that we don't support nor need to)

This commit is contained in:
adelikat 2017-06-12 19:37:45 -05:00
parent 346cf7d637
commit e6d1850361
3 changed files with 0 additions and 8 deletions

View File

@ -136,7 +136,6 @@ namespace BizHawk.Client.EmuHawk
// N64
var n64Settings = GetSyncSettings<N64, N64SyncSettings>();
n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Z64_hlevideo;
n64Settings.Core = N64SyncSettings.CoreType.Pure_Interpret;
Global.Config.N64UseCircularAnalogConstraint = true;
PutSyncSettings<N64>(n64Settings);
@ -191,7 +190,6 @@ namespace BizHawk.Client.EmuHawk
// N64
var n64Settings = GetSyncSettings<N64, N64SyncSettings>();
n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Z64_hlevideo;
n64Settings.Core = N64SyncSettings.CoreType.Pure_Interpret;
Global.Config.N64UseCircularAnalogConstraint = false;
PutSyncSettings<N64>(n64Settings);

View File

@ -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;

View File

@ -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
}