mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 04:57:18 +00:00
removed some parameter conflicts
This commit is contained in:
parent
4520db0966
commit
bae9fcec35
@ -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);
|
||||
|
@ -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");
|
||||
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user