Parse in UInt or big int fail to decode.

This commit is contained in:
Xele02
2013-02-20 00:29:28 +01:00
parent 804bd08374
commit d90a024fc6
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ void Debugger_Memory::Goto(u32 addr)
void Debugger_Memory::on_editAddress_textChanged(const QString &arg1)
{
ui->memView->gotoAddr(arg1.toInt(0,16) & ~3);
ui->memView->gotoAddr(arg1.toUInt(0,16) & ~3);
}
void Debugger_Memory::on_normalBtn_clicked()