From b62803ebb6609c31653c0fc25c0a1c4394e99081 Mon Sep 17 00:00:00 2001 From: gir489 Date: Mon, 5 Feb 2018 19:34:10 -0500 Subject: [PATCH] Fixed an issue with the IDA 32-bit version not producing the correct clickable address. --- SigMaker/Search.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SigMaker/Search.cpp b/SigMaker/Search.cpp index 28c5df2..26feea5 100644 --- a/SigMaker/Search.cpp +++ b/SigMaker/Search.cpp @@ -55,7 +55,7 @@ void SearchForSigs( const qstring& strSig ) { do { -#ifdef __X64__ +#ifdef __EA64__ msg("sig found at 1%X\n", dwAddress); #else msg("sig found at %X\n", dwAddress); @@ -71,7 +71,7 @@ void SearchForSigs( const qstring& strSig ) { do { -#ifdef __X64__ +#ifdef __EA64__ msg( "sig found at 1%X\n", dwAddress ); #else msg("sig found at %X\n", dwAddress);