aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dpd/dpd.ini2
-rw-r--r--dpd/poly.coef (renamed from dpdpoly.coef)0
-rw-r--r--src/ConfigParser.cpp2
3 files changed, 2 insertions, 2 deletions
diff --git a/dpd/dpd.ini b/dpd/dpd.ini
index 21d7d45..eb221e3 100644
--- a/dpd/dpd.ini
+++ b/dpd/dpd.ini
@@ -22,7 +22,7 @@ enabled=1
[poly]
enabled=1
-polycoeffile=dpdpoly.coef
+polycoeffile=dpd/poly.coef
# How many threads to use for the predistorter.
# If not set, detect automatically.
diff --git a/dpdpoly.coef b/dpd/poly.coef
index b29fa26..b29fa26 100644
--- a/dpdpoly.coef
+++ b/dpd/poly.coef
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp
index f27eb08..9ac1280 100644
--- a/src/ConfigParser.cpp
+++ b/src/ConfigParser.cpp
@@ -171,7 +171,7 @@ static void parse_configfile(
// Poly coefficients:
if (pt.get("poly.enabled", 0) == 1) {
mod_settings.polyCoefFilename =
- pt.get<std::string>("poly.polycoeffile", "default");
+ pt.get<std::string>("poly.polycoeffile", "dpd/poly.coef");
mod_settings.polyNumThreads =
pt.get<int>("poly.num_threads", 0);