mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-03 00:45:49 +00:00
prune float_mantissa_set, float_exponent_set, float_sign_set, these are not needed, use float_set
This commit is contained in:
@@ -146,11 +146,8 @@ namespace hook_api
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_divide, int64_t float1, int64_t float2 );
|
||||
DECLARE_HOOK_FUNCNARG(int64_t, float_one );
|
||||
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_exponent_set, int64_t float1, int32_t exponent );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_mantissa, int64_t float1 );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_mantissa_set, int64_t float1, int64_t mantissa );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_sign, int64_t float1 );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_sign_set, int64_t float1, uint32_t negative );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_int, int64_t float1, uint32_t decimal_places, uint32_t abs );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_log, int64_t float1 );
|
||||
DECLARE_HOOK_FUNCTION(int64_t, float_root, int64_t float1, uint32_t n );
|
||||
@@ -589,10 +586,7 @@ namespace hook
|
||||
ADD_HOOK_FUNCTION(float_divide, ctx);
|
||||
ADD_HOOK_FUNCTION(float_one, ctx);
|
||||
ADD_HOOK_FUNCTION(float_mantissa, ctx);
|
||||
ADD_HOOK_FUNCTION(float_mantissa_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_exponent_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_sign, ctx);
|
||||
ADD_HOOK_FUNCTION(float_sign_set, ctx);
|
||||
ADD_HOOK_FUNCTION(float_int, ctx);
|
||||
ADD_HOOK_FUNCTION(float_log, ctx);
|
||||
ADD_HOOK_FUNCTION(float_root, ctx);
|
||||
|
||||
Reference in New Issue
Block a user