diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-15 20:58:24 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-15 20:58:24 -0500 |
commit | f892f3c3afb4a3795dc3ba5c26cacd1f8088b902 (patch) | |
tree | 6fa688072f1e146b834f68ffa31d98d27df76935 /src/ui.cpp | |
parent | be993f55f5d93150b8b418b031d2e9c8d88978b2 (diff) |
text on top of dialog box
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ void UISystem::configure(entityx::EntityManager&, entityx::EventManager&) void UISystem::createDialogBox(float x, float y, float w, float h) { // Queue for generation in the main thread. - m_boxes.emplace_back(0, x, y, w, h); + m_boxes.emplace_back(0, x, -y, w, h); } void UISystem::update(entityx::EntityManager&, |