diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-31 21:21:23 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-31 21:21:23 -0400 |
commit | 23f14a87adac16acf9ee8bc1df2e6cd025ef86e3 (patch) | |
tree | 72405f1f2a7add43edb10bc03fb8931d22be63d3 /include/ui_quest.hpp | |
parent | 75d919eee490fa28827c5a453aca196496c57d4b (diff) |
clean up build processrefactor
Diffstat (limited to 'include/ui_quest.hpp')
-rw-r--r-- | include/ui_quest.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ui_quest.hpp b/include/ui_quest.hpp index 1c478ca..ec433e6 100644 --- a/include/ui_quest.hpp +++ b/include/ui_quest.hpp @@ -42,7 +42,7 @@ namespace ui { const auto& titles = QuestSystem::getQuestTitles(); auto y = top_y - 100; const auto x = offset.x - 180; - for (const auto t : titles) { + for (const auto& t : titles) { UISystem::putString(vec2(x, y), t); y -= 20; //ui::putText(x + 40, y, q.desc.c_str()); |