Hello, in Settings.cpp, line 239: ` if ((name.length() >= 2) && (name.substr(0, 2) == "AUDIO")) ` always failed. I had to patch it in this way to make it work: `if ((name.length() >= 2) && (name.substr(0, 2) == "AU")) ` Cordially Giuseppe