GUI: close issue #573 (invalid sizes in save data)
This commit is contained in:
parent
8cf32e3f26
commit
abbad9dfe3
|
@ -1210,13 +1210,12 @@ void CPUDump::binarySaveToFileSlot()
|
||||||
if(fileName.length())
|
if(fileName.length())
|
||||||
{
|
{
|
||||||
// Get starting selection and selection size, then convert selStart to VA
|
// Get starting selection and selection size, then convert selStart to VA
|
||||||
dsint rvaSelStart = getSelectionStart();
|
dsint selStart = getSelectionStart();
|
||||||
dsint selSize = getSelectionEnd() - rvaSelStart + 1;
|
dsint selSize = getSelectionEnd() - selStart + 1;
|
||||||
dsint vaSelStart = rvaToVa(rvaSelStart);
|
|
||||||
|
|
||||||
// Prepare command
|
// Prepare command
|
||||||
fileName = QDir::toNativeSeparators(fileName);
|
fileName = QDir::toNativeSeparators(fileName);
|
||||||
QString cmd = QString("savedata %1,%2,%3").arg(fileName, QString::number(vaSelStart, 16), QString::number(selSize));
|
QString cmd = QString("savedata \"%1\",%2,%3").arg(fileName, ToHexString(rvaToVa(selStart)), ToHexString(selSize));
|
||||||
DbgCmdExec(cmd.toUtf8().constData());
|
DbgCmdExec(cmd.toUtf8().constData());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue