N64 Taser profile - turn off backup savestates, and use the regular rsp plugin instead of z64's

This commit is contained in:
adelikat 2014-10-09 21:11:32 +00:00
parent f14f226948
commit 315388d0bb
1 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ namespace BizHawk.Client.EmuHawk
Global.Config.SaveLargeScreenshotWithStates = true;
Global.Config.SaveScreenshotWithStates = true;
Global.Config.AllowUD_LR = true;
Global.Config.BackupSavestates = true;
Global.Config.BackupSavestates = false;
Global.Config.SkipLagFrame = true;
Global.Config.SaveStateCompressionLevelNormal = 0;
@ -240,7 +240,7 @@ namespace BizHawk.Client.EmuHawk
// N64
var n64Settings = GetSyncSettings<N64, N64SyncSettings>();
n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Z64_hlevideo;
n64Settings.Rsp = N64SyncSettings.RspType.Rsp_Hle;
n64Settings.Core = N64SyncSettings.CoreType.Pure_Interpret;
Global.Config.N64UseCircularAnalogConstraint = false;
PutSyncSettings<N64>(n64Settings);