N64: Allow you to enable the Glide64mk2 plugin
This commit is contained in:
parent
bb8745e04c
commit
77b249f68e
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue