Skip to content

Commit

Permalink
Fix r2dec detection (#1640)
Browse files Browse the repository at this point in the history
  • Loading branch information
xarkes authored and pelijah committed Jul 8, 2019
1 parent d37bce9 commit 68a864e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Cutter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ QString CutterCore::getDecompiledCodePDC(RVA addr)

bool CutterCore::getR2DecAvailable()
{
return cmdList("e cmd.pdc=?").contains(QStringLiteral("r2dec"));
return cmdList("e cmd.pdc=?").contains(QStringLiteral("pdd"));
}

QString CutterCore::getDecompiledCodeR2Dec(RVA addr)
Expand Down

0 comments on commit 68a864e

Please sign in to comment.