1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-29 00:42:19 +00:00
This commit is contained in:
Zeno Rogue 2025-08-23 22:53:18 +02:00
commit c75342da10

View File

@ -899,7 +899,7 @@ EX shared_ptr<custom_parameter> param_colortable(colortable& val, const paramete
u->custom_save = [&val] { u->custom_save = [&val] {
bool first = true; bool first = true;
string str; string str;
for(auto v: val) { if(first) first = false; else str += ","; str += itsh(v); } for(auto v: val) { if(first) first = false; else str += ","; str += itsh6(v); }
return str; return str;
}; };
u->custom_do_save = [dft, &val] { return val != dft; }; u->custom_do_save = [dft, &val] { return val != dft; };