summaryrefslogtreecommitdiffhomepage
path: root/editor/imgui.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-03-18 01:45:19 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-03-19 14:32:18 +0100
commit151e6911a8aa56749edbbf0c15ab04752d96c2f3 (patch)
tree06fcf3d6551d1945b5717458aa09222c947ede04 /editor/imgui.cpp
parente77dc91b5d3e6a5181776a81cee2c3164c7b3cc9 (diff)
ccc
Diffstat (limited to 'editor/imgui.cpp')
-rw-r--r--editor/imgui.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/editor/imgui.cpp b/editor/imgui.cpp
index 62a0850d..45e0268a 100644
--- a/editor/imgui.cpp
+++ b/editor/imgui.cpp
@@ -267,11 +267,11 @@ void app::do_lightmap_test()
if (auto* chunk = w.at(c))
{
auto offset = Vector2(Vector2i(c.x) - Vector2i(x, y));
- for (const auto& e_ : chunk->objects())
+ for (const auto& eʹ : chunk->objects())
{
- if (e_->type() == object_type::light)
+ if (eʹ->type() == object_type::light)
{
- const auto& li = static_cast<const light&>(*e_);
+ const auto& li = static_cast<const light&>(*eʹ);
if (li.max_distance < 1e-6f)
continue;
light_s L {
@@ -338,16 +338,16 @@ void app::do_popup_menu()
{
const auto [id, target] = _popup_target;
auto& w = M->world();
- auto e_ = w.find_object(id);
+ auto eʹ = w.find_object(id);
- if (target == popup_target_type::none || !e_)
+ if (target == popup_target_type::none || !eʹ)
{
_popup_target = {};
_pending_popup = {};
return;
}
- auto& e = *e_;
+ auto& e = *eʹ;
auto b0 = push_id(SCENERY_POPUP_NAME);
//if (_popup_target.target != popup_target_type::scenery) {...}