1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-07 21:16:48 +00:00

removed some parameter conflicts

This commit is contained in:
Zeno Rogue 2024-06-30 16:06:29 +02:00
parent 4520db0966
commit bae9fcec35
3 changed files with 0 additions and 4 deletions

View File

@ -1196,7 +1196,6 @@ EX void initConfig() {
-> editable("flashing effects", 'h')
-> help("Disable if you are photosensitive. Replaces flashing effects such as Orb of Storms lightning with slow, adjustable animations.");
param_f(vid.binary_width, parameter_names("bwidth", "binary-tiling-width"), 1);
param_custom_ld(vid.binary_width, "binary tiling width", menuitem_binary_width, 'v');
param_b(fake::multiple_special_draw, "fake_multiple", true);

View File

@ -756,7 +756,6 @@ EX namespace history {
history::includeHistory = false;
}) + addHook(hooks_configfile, 0, [] {
param_b(autobandhistory, "include history"); // check!
param_f(lvspeed, parameter_names("lvspeed", "lineview speed"));
param_f(extra_line_steps, "lineview extension");

View File

@ -1760,7 +1760,6 @@ auto animhook = addHook(hooks_frame, 100, display_animation)
#endif
+ addHook(hooks_configfile, 100, [] {
#if CAP_CONFIG
param_f(anims::period, parameter_names("aperiod", "animation period"));
param_i(anims::noframes, "animation frames");
param_f(anims::cycle_length, parameter_names("acycle", "animation cycle length"));
param_f(anims::parabolic_length, parameter_names("aparabolic", "animation parabolic length"))
@ -1776,7 +1775,6 @@ auto animhook = addHook(hooks_frame, 100, display_animation)
param_f(rug_rotation1, "rug_rotation1");
param_f(rug_rotation2, "rug_rotation2");
param_f(rotation_distance, "rotation_distance");
param_f(cycle_length, "cycle_length");
param_f(env_ocean, "env_ocean");
param_f(env_volcano, "env_volcano");
param_b(wallopt, "wallopt");