1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-24 23:02:07 +00:00

arg:: used the new add::arg in some contexts

This commit is contained in:
Zeno Rogue
2021-03-31 02:58:03 +02:00
parent af28dd98da
commit 408a49dfe9
4 changed files with 11 additions and 32 deletions
+1 -10
View File
@@ -866,16 +866,7 @@ EX namespace bt {
return point3(log(2) + log(-h[0]), h[1] / co, h[2] / co);
}
#if CAP_COMMANDLINE
auto bt_config = addHook(hooks_args, 0, [] () {
using namespace arg;
if(argis("-btwidth")) {
shift_arg_formula(vid.binary_width);
return 0;
}
return 1;
});
#endif
auto bt_config = arg::add2("-btwidth", [] {arg::shift_arg_formula(vid.binary_width); });
EX bool pseudohept(cell *c) {
if(WDIM == 2)