We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2242d9b commit 205cd9fCopy full SHA for 205cd9f
external/ini-cpp/ini/ini.h
@@ -579,6 +579,9 @@ inline const bool INIReader::BoolConverter(std::string s) const {
579
inline int INIReader::ValueHandler(void* user, const char* section,
580
const char* name, const char* value) {
581
INIReader* reader = (INIReader*)user;
582
+ if (!stricmp(section, "CDTracks"))
583
+ return 1; // HACK: ignore CDTracks section, OR2006Tweaks handles that seperately
584
+
585
if (reader->_values[section][name].size() > 0) {
586
throw std::runtime_error("duplicate key '" + std::string(name) +
587
"' in section '" + section + "'.");
0 commit comments