SNES - hide accuracy core option except in developer builds
This commit is contained in:
parent
41265f1320
commit
abff21a450
|
@ -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);
|
||||
|
|
|
@ -101,5 +101,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
UserDoubleSizeOption = cbDoubleSize.Checked;
|
||||
}
|
||||
|
||||
private void SNESOptions_Load(object sender, EventArgs e)
|
||||
{
|
||||
rbAccuracy.Visible = VersionInfo.DeveloperBuild;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue