From fa51c2843a3a26c7d6874a54c506505f27425cd6 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Fri, 29 May 2020 12:38:13 +0200 Subject: [PATCH] Set the default test root key to C4 --- tests/Tuning.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tuning.cpp b/tests/Tuning.cpp index ee65f190..4eb69baa 100644 --- a/tests/Tuning.cpp +++ b/tests/Tuning.cpp @@ -39,7 +39,7 @@ int main(int argc, char* argv[]) ("h,help", "Print help") ("s,scale", "Path of scala tuning file", cxxopts::value()) ("f,frequency", "Tuning frequency", cxxopts::value()->default_value("440.0")) - ("r,root-key", "Root key", cxxopts::value()->default_value("C5")); + ("r,root-key", "Root key", cxxopts::value()->default_value("C4")); auto result = options.parse(argc, argv);