mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-22 05:22:32 +01:00
parent
f8d4dabdac
commit
97ebcdbbd5
@ -5334,9 +5334,9 @@ void Patch_SA_10(HINSTANCE hInstance)
|
||||
}
|
||||
|
||||
|
||||
// Display stats in kg's as floats (they pass a float and intend to display an integer)
|
||||
Patch<const char*>( 0x55A954 + 1, "%.0fkgs" );
|
||||
Patch<const char*>( 0x5593E4 + 1, "%.0fkgs" );
|
||||
// Display stats in kg as floats (they pass a float and intend to display an integer)
|
||||
Patch<const char*>( 0x55A954 + 1, "%.0fkg" );
|
||||
Patch<const char*>( 0x5593E4 + 1, "%.0fkg" );
|
||||
|
||||
|
||||
// Add wind animations when driving a Quadbike
|
||||
@ -6455,6 +6455,15 @@ void Patch_SA_NewBinaries_Common(HINSTANCE hInstance)
|
||||
TXN_CATCH();
|
||||
|
||||
|
||||
// Bindable NUM5
|
||||
try
|
||||
{
|
||||
auto keys_exception_list = get_pattern("3D 08 04 00 00 74", 5);
|
||||
Nop(keys_exception_list, 2);
|
||||
}
|
||||
TXN_CATCH();
|
||||
|
||||
|
||||
// Unlocked widescreen resolutions
|
||||
{
|
||||
// Assume anybody could have changed those, so bail out if ANYTHING goes wrong
|
||||
|
Loading…
Reference in New Issue
Block a user