-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Sonic Frontiers] Update codes for v1.42
- Loading branch information
Showing
5 changed files
with
26 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 10 additions & 6 deletions
16
Source/Sonic Frontiers/Fixes/Animation/Fix Squatting Animation.hmm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
Patch "Fix Squatting Animation" in "Fixes/Animation" by "angryzor" does "Plays the squat start animation when squatting from a standing pose." | ||
{ | ||
/* 0x14B83D5ED in 1.41 */ | ||
long stateSquatEnter = ScanSignature( | ||
"\x48\x89\xc2\x83\xfd\x3a\x74\x17\x83\xfd\x01\x48\x8d\x05\x59\xef\xcf\xf5\x48\x8d\x1d\xaa\x6f\xc5\xf5\x48\x0f\x45\xd8\xeb\x07\x48\x8d\x1d\x45\xef\xcf\xf5\x48\x89\xf9\xe8\x95\x88\x4f\xf5\x48\x89\xc1\x41\xb0\xfe\x48\x89\xda\xe8", | ||
"xxxxxxxxxxxxxx????xxx????xxxxxxxxx????xxxx????xxxxxxxxxx" | ||
); | ||
WriteProtected<byte> | ||
( | ||
/* v1.42: 0x14B6E10FA */ | ||
ScanSignature | ||
( | ||
"\x83\xFD\x01\x48\x8D\x05\xCC\xCC\xCC\xCC\x48\x8D\x1D", | ||
"xxxxxx????xxx" | ||
), | ||
|
||
WriteProtected<byte>(stateSquatEnter + 0xA, 2); | ||
Assemble("cmp ebp, 2") | ||
); | ||
} |
5 changes: 0 additions & 5 deletions
5
Source/Sonic Frontiers/Fixes/Graphics/Fix RenderDoc Captures (v1.41).hmm
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
Source/Sonic Frontiers/Fixes/Graphics/Fix RenderDoc Captures (v1.42).hmm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Patch "Fix RenderDoc Captures (v1.42)" in "Fixes/Graphics" by "Skyth" does "Fixes RenderDoc being unable to hook to the game for capturing the graphics device." | ||
{ | ||
WriteProtected<long>(0x141210B40, Read<long>(0x1560DE168)); | ||
WriteProtected<long>(0x141210B50, Read<long>(0x1560DE188)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters