aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-11 10:50:19 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-11 10:50:19 -0500
commit76a8dfce1c91c8536c940b53883eaf0ed7bd769a (patch)
tree311c5e1588eb1f8bd1bf5559eb6134edda4517bc /src/components.cpp
parentf800dbc034e7a70a613bab8cd9d147be4f6e88b6 (diff)
more windows stuff
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp3
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;