mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
VSH/UI: Add VSH to game grid
* Custom VSH config. * VSH shortcut creation.
This commit is contained in:
parent
8cf28730cb
commit
8eefbcae45
8 changed files with 122 additions and 65 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue