1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 09:26:52 +00:00

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

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() { void texture_config::clear_texture_map() {
texture_map.clear(); texture_map.clear();