Skip to content

Commit

Permalink
Merge pull request #85 from mika-f/feature/blender-4.0.1
Browse files Browse the repository at this point in the history
mika-f authored Dec 31, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents a8acdeb + 8c7ce6a commit 920b3bb
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/dll/BlenderPatchPatterns.h
Original file line number Diff line number Diff line change
@@ -266,13 +266,24 @@ static std::unordered_map<std::string, BlenderPatchPattern> Patchers{
"E8 EB BD 00 00 48 85 C0",
}
},
#pragma endregion
#pragma endregion // Blender 3.x

#pragma region Blender 4.x
{
"4.0.0", {
"E8 A9 4E 45 00",
"4C 8D 05 09 0A 00 00",
"E8 7B FF FF FF 84 C0",
"E8 FB 26 00 00 48 85 C0"
}
},
{
"4.0.1", {
"E8 89 4E 45 00",
"4C 8D 05 09 0A 00 00",
"E8 7B FF FF FF 84 C0",
"E8 FB 26 00 00 48 85 C0"
}
}
#pragma endregion // Blender 4.x
};

0 comments on commit 920b3bb

Please sign in to comment.