Remove old ';' check as I don't think anyone is using this at all

This commit is contained in:
kalaposfos13 2025-06-25 08:28:59 +02:00
parent 075d6425e2
commit a64e80673c

View File

@ -259,11 +259,6 @@ void ParseInputConfig(const std::string game_id = "") {
std::string output_string = line.substr(0, equal_pos);
std::string input_string = line.substr(equal_pos + 1);
// Remove trailing semicolon from input_string
if (!input_string.empty() && input_string[input_string.length() - 1] == ';' &&
input_string != ";") {
line = line.substr(0, line.length() - 1);
}
std::size_t comma_pos = input_string.find(',');
auto parseInt = [](const std::string& s) -> std::optional<int> {