allow snes9x movies to be recorded (still nag, but allow the user to continue)

This commit is contained in:
adelikat 2018-11-18 09:52:35 -06:00
parent a4dcd4d010
commit c8265f6c10
2 changed files with 4 additions and 4 deletions

View File

@ -484,7 +484,7 @@ namespace BizHawk.Client.EmuHawk
MessageBoxIcon.Warning);
box.SetButtons(
new[] { "Switch", "Cancel" },
new[] { "Switch", "Continue" },
new[] { DialogResult.Yes, DialogResult.Cancel });
box.MaximumSize = new Size(475, 350);
@ -498,7 +498,7 @@ namespace BizHawk.Client.EmuHawk
}
else if (result == DialogResult.Cancel)
{
return;
// Do nothing and allow the user to continue to record the movie
}
}

View File

@ -324,7 +324,7 @@ namespace BizHawk.Client.EmuHawk
MessageBoxIcon.Warning);
box.SetButtons(
new[] { "Switch", "Cancel" },
new[] { "Switch", "Continue" },
new[] { DialogResult.Yes, DialogResult.Cancel });
box.MaximumSize = new Size(475, 350);
@ -338,7 +338,7 @@ namespace BizHawk.Client.EmuHawk
}
else if (result == DialogResult.Cancel)
{
return false;
//return false;
}
}