diff options
-rw-r--r-- | src/mir_app/src/db_ini.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/db_ini.cpp b/src/mir_app/src/db_ini.cpp index 31b42e3225..f558f1fb83 100644 --- a/src/mir_app/src/db_ini.cpp +++ b/src/mir_app/src/db_ini.cpp @@ -343,7 +343,7 @@ LBL_NewLine: }
if (secFN) warnThisSection = 0;
}
- if (szLine[1] == '?') {
+ if (szLine[1] == '?' || szLine[1] == '-') {
mir_strncpy(szSection, szLine + 2, min(sizeof(szSection), (int)(szEnd - szLine - 1)));
db_enum_settings(0, SettingsEnumProc, szSection);
while (setting_items) {
|