M3dMaths_SquareRoot0 is now closer but order is different

This commit is contained in:
Jose Silva 2023-04-11 21:17:41 +02:00
parent 53d5c8c7f2
commit 1482a6448b
3 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,7 @@ int M3dMaths_SquareRoot0(int i){
return 0;
}
return (int)sqrt(i);
volatile double tmp = i;
return (int)sqrt(tmp);
}

View File

@ -173,7 +173,7 @@ def main():
equal, resp_str = equal_functions(orig_func_data, decomp_func_data, orig_address, function_overrides=function_overrides)
if not equal:
print(f'{entry} - {pydemangler.demangle(entry)} - {orig_address} - does not match')
print(f'{entry} - {pydemangler.demangle(entry)} - {orig_address} - {hashlib.md5(decomp_func_data).hexdigest()} - does not match')
if resp_str != '':
print(resp_str)
not_match.append(entry)

View File

@ -1,3 +1,3 @@
{
"4641840" : "149c8f8b46cff0518b3f27165804a1d8"
"4641840" : "b661c866ba79a9b97b59851738aac533"
}