We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc22de8 + c2a4d9f commit 33c70dfCopy full SHA for 33c70df
changelog.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## Upcoming
4
+- `unrealsdk::hook_manager::inject_next_call` is now thread local.
5
+
6
+ [427c8734](https://github.com/bl-sdk/unrealsdk/commit/427c8734)
7
8
## v1.4.0
9
- Fixed that UE3 `WeakPointer`s would always return null, due to an incorrect offset in the
10
`UObject` header layout.
src/unrealsdk/hook_manager.cpp
@@ -86,7 +86,7 @@ struct List {
86
87
namespace {
88
89
-bool should_inject_next_call = false;
+thread_local bool should_inject_next_call = false;
90
91
bool should_log_all_calls = false;
92
std::unique_ptr<std::wostream> log_all_calls_stream;
0 commit comments