diff options
Diffstat (limited to 'src/systems/dialog.cpp')
-rw-r--r-- | src/systems/dialog.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp index 0be0acb..f818760 100644 --- a/src/systems/dialog.cpp +++ b/src/systems/dialog.cpp @@ -36,9 +36,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) if (((mce.position.x > pos.x) & (mce.position.x < pos.x + dim.width)) && ((mce.position.y > pos.y) & (mce.position.y < pos.y + dim.height))) { - if (e.has_component<Flash>()) - e.remove<Flash>(); - e.assign<Flash>(Color(0, 255, 255)); + e.replace<Flash>(Color(0, 255, 255)); if (!dialogRun.load()) { // copy entity, windows destroys the original after thread detach |