Skip to content

Commit 593a349

Browse files
committed
Updated log message
1 parent 7118280 commit 593a349

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

sources/x86Detour.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ uint8_t getJmpSize() {
2828
void x86Detour::fixSpecialCases(insts_t& prologue) {
2929
for (auto& instruction: prologue) {
3030
if (const auto routine = getRoutineReturningSP(instruction)) {
31-
Log::log("Fixing special case #215:\n" + instsToStr(std::vector{instruction}), ErrorLevel::INFO);
31+
Log::log(
32+
"Fixing special case [call to routine reading esp ]:\n" + instsToStr(std::vector{instruction}),
33+
ErrorLevel::INFO
34+
);
3235

3336
// Fix for https://github.com/stevemk14ebr/PolyHook_2_0/issues/215
3437
// Example routine(eax could be any register):

0 commit comments

Comments
 (0)