VSH/UI: Add VSH to game grid

* Custom VSH config.
* VSH shortcut creation.
This commit is contained in:
Eladash 2023-01-06 14:00:24 +02:00 committed by Megamouse
parent 8cf28730cb
commit 8eefbcae45
8 changed files with 122 additions and 65 deletions

View file

@ -352,9 +352,14 @@ namespace rpcs3::utils
#endif
}
std::string get_custom_config_path(const std::string& title_id)
std::string get_custom_config_path(const std::string& identifier)
{
return get_custom_config_dir() + "config_" + title_id + ".yml";
if (identifier.empty())
{
return {};
}
return get_custom_config_dir() + "config_" + identifier + ".yml";
}
std::string get_input_config_root()