2024-04-03 Fred Gleason <fredg@paravelsystems.com>

* Added an 'ExtendedNextPadEvents=' directive to rd.conf(5).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2024-04-03 14:40:27 -04:00
parent bb013678ca
commit 3d4fbf254a
10 changed files with 95 additions and 15 deletions

View File

@@ -538,6 +538,12 @@ int RDConfig::serviceStartupDelay() const
}
int RDConfig::extendedNextPadEvents() const
{
return conf_extended_next_pad_events;
}
QString RDConfig::sasStation() const
{
return conf_sas_station;
@@ -729,6 +735,9 @@ bool RDConfig::load()
conf_temp_directory=profile->stringValue("Tuning","TempDirectory","");
conf_service_startup_delay=profile->intValue("Tuning","ServiceStartupDelay",
RD_DEFAULT_SERVICE_STARTUP_DELAY);
conf_extended_next_pad_events=
profile->intValue("Tuning","ExtendedNextPadEvents",
RD_DEFAULT_EXTENDED_NEXT_PAD_EVENTS);
conf_sas_station=profile->stringValue("SASFilter","Station","");
conf_sas_matrix=profile->intValue("SASFilter","Matrix",0);
conf_sas_base_cart=profile->intValue("SASFilter","BaseCart",0);