another constexpr changed to const in textures.cpp

This commit is contained in:
Zeno Rogue 2023-10-28 09:53:12 +02:00
parent 33060a884c
commit a50a87f095
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ void texture_config::mark_triangles() {
}
}
static constexpr auto current_texture_parameters = tie(geometry, variation, patterns::whichPattern, patterns::subpattern_flags, pmodel, pconf.scale, pconf.alpha);
static const auto current_texture_parameters = tie(geometry, variation, patterns::whichPattern, patterns::subpattern_flags, pmodel, pconf.scale, pconf.alpha);
void texture_config::clear_texture_map() {
texture_map.clear();