1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

bringris:: do not save hr::geometry as it is buggy

This commit is contained in:
Zeno Rogue 2020-10-26 19:53:27 +01:00
parent c0637bc1a2
commit f7fdb6fa1b

View File

@ -1195,7 +1195,10 @@ void settings_menu() {
#if CAP_FILES
dialog::addItem("save the current config", 's');
dialog::add_action(saveConfig);
dialog::add_action([] {
dynamicval<eGeometry> g(geometry, gNormal);
saveConfig();
});
#endif
dialog::display();
}