From 78033b5ba2167112f2f4ea7d4ba37f7819e04dac Mon Sep 17 00:00:00 2001 From: _xeroxz <_xeroxz@back.engineer> Date: Tue, 30 Nov 2021 18:57:53 -0800 Subject: [PATCH] fixed a small bug... changed > to != and the roof to my coupe came off --- src/vmlocate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vmlocate.cpp b/src/vmlocate.cpp index f7db7d3..5ae5fbc 100644 --- a/src/vmlocate.cpp +++ b/src/vmlocate.cpp @@ -86,7 +86,7 @@ std::vector get_vm_entries(std::uintptr_t module_base, > 0x7a53 : push rbx > 0x500d : push r15 */ - if (num_pushs > 2) continue; + if (num_pushs != 2) continue; // check for a pushfq... // > 0x4926 : pushfq <---