fix RW/FF NUD (fixes #2061)

This commit is contained in:
zeromus 2020-05-27 13:18:18 -05:00
parent 684fca66c5
commit 924c566dc1
2 changed files with 6 additions and 0 deletions

View File

@ -122,6 +122,7 @@
0,
0,
0});
this.nudRWFF.ValueChanged += new System.EventHandler(this.nudRWFF_ValueChanged);
//
// cbEnableRWFF
//

View File

@ -148,5 +148,10 @@ namespace BizHawk.Client.EmuHawk
{
UpdateSoundDialog();
}
private void nudRWFF_ValueChanged(object sender, EventArgs e)
{
tbRWFF.Value = (int)nudRWFF.Value;
}
}
}