1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

bringris:: -dpl option to change draw_per_level

This commit is contained in:
Zeno Rogue 2020-12-24 23:03:10 +01:00
parent d3ae28730e
commit b48defb5f1

View File

@ -106,7 +106,7 @@ int camera = 3;
int facing_mod = 0; int facing_mod = 0;
int draw_per_level = 500; int draw_per_level = 2000;
int shape_id, next_shape_id; int shape_id, next_shape_id;
@ -1804,6 +1804,10 @@ int args() {
else if(argis("-ray-on")) else if(argis("-ray-on"))
use_raycaster = true; use_raycaster = true;
else if(argis("-dpl")) {
shift(); draw_per_level = argi();
}
else return 1; else return 1;
return 0; return 0;
} }