Parse input as hex instead of decimal to match display values in the debugger's register view

This commit is contained in:
Zhuowei Zhang 2014-09-12 00:20:26 -04:00
parent a96618b2e6
commit 3eaeeee41d
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ static void SetSpecialRegValue(int reg, u32 value)
void CRegTable::SetValue(int row, int col, const wxString& strNewVal)
{
u32 newVal = 0;
if (TryParse(WxStrToStr(strNewVal), &newVal))
if (TryParse("0x" + WxStrToStr(strNewVal), &newVal))
{
if (row < 32)
{