mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Qt/patches: fix multi app version entry in patch creator
This commit is contained in:
parent
8371c445ce
commit
dedda09560
1 changed files with 1 additions and 1 deletions
|
@ -497,7 +497,7 @@ void patch_creator_dialog::generate_yml(const QString& /*text*/)
|
|||
out << YAML::BeginMap;
|
||||
out << ui->serialEdit->text().simplified().toStdString();
|
||||
{
|
||||
out << YAML::Flow << YAML::BeginSeq << ui->gameVersionEdit->text().toStdString() << YAML::EndSeq;
|
||||
out << YAML::Flow << fmt::split(ui->gameVersionEdit->text().toStdString(), { ",", " " });
|
||||
}
|
||||
out << YAML::EndMap;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue