allow snes9x movies to be recorded (still nag, but allow the user to continue)
This commit is contained in:
parent
a4dcd4d010
commit
c8265f6c10
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue