mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
patch_manager: add download button
This commit is contained in:
parent
1e4655aef6
commit
46e8b4f561
10 changed files with 147 additions and 22 deletions
|
|
@ -36,12 +36,12 @@ std::pair<YAML::Node, std::string> yaml_load(const std::string& from)
|
|||
{
|
||||
result = YAML::Load(from);
|
||||
}
|
||||
catch(const std::exception& e)
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
return{YAML::Node(), std::string("YAML exception: ") + e.what()};
|
||||
return {YAML::Node(), std::string("YAML exception: ") + e.what()};
|
||||
}
|
||||
|
||||
return{result, ""};
|
||||
return {result, ""};
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue