fix RW/FF NUD (fixes #2061)
This commit is contained in:
parent
684fca66c5
commit
924c566dc1
|
@ -122,6 +122,7 @@
|
|||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudRWFF.ValueChanged += new System.EventHandler(this.nudRWFF_ValueChanged);
|
||||
//
|
||||
// cbEnableRWFF
|
||||
//
|
||||
|
|
|
@ -148,5 +148,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
UpdateSoundDialog();
|
||||
}
|
||||
|
||||
private void nudRWFF_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
tbRWFF.Value = (int)nudRWFF.Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue