diff options
Diffstat (limited to 'src/components.cpp')
-rw-r--r-- | src/components.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components.cpp b/src/components.cpp index 7e6f204..fb0977f 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -172,7 +172,8 @@ void DialogSystem::receive(const MouseClickEvent &mce) ((mce.position.y > pos.y) & (mce.position.y < pos.y + dim.height))) { if (!dialogRun.load()) { - std::thread([&] { + // copy entity, windows destroys the original after thread detach + std::thread([e, &pos, &dim, &d, &name] { std::string questAssignedText; int newIndex; |