From 151e6911a8aa56749edbbf0c15ab04752d96c2f3 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 18 Mar 2024 01:45:19 +0100 Subject: ccc --- shaders/lightmap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shaders/lightmap.cpp') diff --git a/shaders/lightmap.cpp b/shaders/lightmap.cpp index 14bb27e2..bca81c6a 100644 --- a/shaders/lightmap.cpp +++ b/shaders/lightmap.cpp @@ -397,9 +397,9 @@ void lightmap_shader::add_geometry(Vector2 neighbor_offset, chunk& c) void lightmap_shader::add_objects(Vector2 neighbor_offset, chunk& c) { - for (const auto& e_ : c.objects()) + for (const auto& eʹ : c.objects()) { - const auto& e = *e_; + const auto& e = *eʹ; if (e.is_virtual()) continue; if (e.pass == pass_mode::pass || e.pass == pass_mode::see_through) -- cgit v1.2.3