Skip to content

Commit

Permalink
Fix asm tool bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackINT3 committed Nov 25, 2021
1 parent 02b410a commit 26ccbb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/OpenArk/coderkit/coderkit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ QString CoderKit::Rasm2Asm(std::string data, int cpu, int byteorder, const std::
if (exitcode != 0) return err_prefix + WStrToQ(out);
std::string bin;
UNONE::FsReadFileDataW(tmp_out, bin);
bin = UNONE::StrTrimA(bin);
bin = format + UNONE::StrInsertA(bin, 2, format);
return StrToQ(bin);
}
Expand Down
2 changes: 1 addition & 1 deletion src/OpenArk/reverse/reverse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ WINTOOL_ITEM WinAllTools[] = {
{ RUN_EXE, "vc2015x86", "dev/vcredist/vcredist_2015_x86.exe", "dev/vcredist/vcredist_2015_x86.exe" },
{ RUN_EXE, "vc1519x64", "dev/vcredist/vcredist_2015~2019_x64.exe", "dev/vcredist/vcredist_2015~2019_x64.exe" },
{ RUN_EXE, "vc1519x86", "dev/vcredist/vcredist_2015~2019_x86.exe", "dev/vcredist/vcredist_2015~2019_x86.exe" },
{ RUN_EXE, "dotnet4", "dev/dotnet/netframework4.msi", "dev/dotnet/dotNetFx40_Full_x86_x64.exe" },
{ RUN_EXE, "dotnet4", "dev/dotnet/dotNetFx40_Full_x86_x64.exe", "dev/dotnet/dotNetFx40_Full_x86_x64.exe" },
};

Reverse::Reverse(QWidget *parent, int tabid) :
Expand Down

0 comments on commit 26ccbb6

Please sign in to comment.