multiple instructions can be patched now (#1984)

This commit is contained in:
int_13h 2020-01-02 13:37:10 +05:30 committed by Itay Cohen
parent 7fdd8117a9
commit 32be76fabc

View File

@ -609,7 +609,7 @@ QString CutterCore::getInstructionOpcode(RVA addr)
void CutterCore::editInstruction(RVA addr, const QString &inst)
{
cmd("wa " + inst + " @ " + RAddressString(addr));
cmd("\"wa " + inst + "\" @ " + RAddressString(addr));
emit instructionChanged(addr);
}