Debugger - Make Register Boxes use Hex input.
This commit is contained in:
parent
2da9650be5
commit
17ce177e5f
|
@ -178,12 +178,19 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
try
|
||||
{
|
||||
Core.SetCpuRegister(t.Name, int.Parse(t.Text));
|
||||
if (t.Text != String.Empty)
|
||||
{
|
||||
Core.SetCpuRegister(t.Name, int.Parse(t.Text, System.Globalization.NumberStyles.HexNumber));
|
||||
}
|
||||
}
|
||||
catch (InvalidOperationException)
|
||||
{
|
||||
t.Enabled = false;
|
||||
}
|
||||
catch (FormatException)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue