RMG-Core: remove double semicolon usage

This commit is contained in:
Rosalie Wanders
2025-02-16 19:16:51 +01:00
parent 45e0231214
commit 66fc3492ca
+1 -1
View File
@@ -1440,7 +1440,7 @@ static bool config_key_exists(std::string section, std::string key)
return false;
}
return std::find(l_keyList.begin(), l_keyList.end(), key) != l_keyList.end();;
return std::find(l_keyList.begin(), l_keyList.end(), key) != l_keyList.end();
}
static bool config_option_set(std::string section, std::string key, m64p_type type, void *value)