1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 19:42:48 -05:00

The bell overload times are now measured in milliseconds, although

the config box still enters them in seconds (it allows fractions).

[originally from svn r1089]
This commit is contained in:
Simon Tatham
2001-04-28 15:47:26 +00:00
parent 296cad5962
commit 321adcb4b9
3 changed files with 22 additions and 8 deletions

View File

@ -267,8 +267,8 @@ void load_settings (char *section, int do_host, Config *cfg) {
sizeof(cfg->bell_wavefile));
gppi (sesskey, "BellOverload", 1, &cfg->bellovl);
gppi (sesskey, "BellOverloadN", 5, &cfg->bellovl_n);
gppi (sesskey, "BellOverloadT", 2, &cfg->bellovl_t);
gppi (sesskey, "BellOverloadS", 5, &cfg->bellovl_s);
gppi (sesskey, "BellOverloadT", 2000, &cfg->bellovl_t);
gppi (sesskey, "BellOverloadS", 5000, &cfg->bellovl_s);
gppi (sesskey, "ScrollbackLines", 200, &cfg->savelines);
gppi (sesskey, "DECOriginMode", 0, &cfg->dec_om);
gppi (sesskey, "AutoWrapMode", 1, &cfg->wrap_mode);