SNES - hide accuracy core option except in developer builds

This commit is contained in:
adelikat 2014-06-07 00:57:54 +00:00
parent 41265f1320
commit abff21a450
2 changed files with 6 additions and 0 deletions

View File

@ -170,6 +170,7 @@
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "SNES Options";
this.Load += new System.EventHandler(this.SNESOptions_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);

View File

@ -101,5 +101,10 @@ namespace BizHawk.Client.EmuHawk
UserDoubleSizeOption = cbDoubleSize.Checked;
}
private void SNESOptions_Load(object sender, EventArgs e)
{
rbAccuracy.Visible = VersionInfo.DeveloperBuild;
}
}
}