N64: Allow you to enable the Glide64mk2 plugin

This commit is contained in:
pjgat09 2013-08-06 02:27:20 +00:00
parent bb8745e04c
commit 77b249f68e
2 changed files with 6 additions and 1 deletions

View File

@ -425,6 +425,10 @@ namespace BizHawk.Emulation.Consoles.Nintendo.N64
{
VidDllName = "mupen64plus-video-glide64.dll";
}
else if (video_settings.PluginName == "Glide64mk2")
{
VidDllName = "mupen64plus-video-glide64mk2.dll";
}
else
{
throw new InvalidOperationException(string.Format("Unknown plugin \"" + video_settings.PluginName));

View File

@ -293,7 +293,8 @@
this.PluginComboBox.FormattingEnabled = true;
this.PluginComboBox.Items.AddRange(new object[] {
"Rice",
"Glide64"});
"Glide64",
"Glide64mk2"});
this.PluginComboBox.Location = new System.Drawing.Point(13, 34);
this.PluginComboBox.Name = "PluginComboBox";
this.PluginComboBox.Size = new System.Drawing.Size(173, 21);