Qt: disable VSH boot if not installed

This commit is contained in:
Megamouse 2021-07-27 01:29:14 +02:00
parent 0a7a12bbff
commit 56d46b5a49
2 changed files with 8 additions and 2 deletions

View file

@ -1613,7 +1613,7 @@ bool game_list_frame::RemoveSPUCache(const std::string& base_dir, bool is_intera
void game_list_frame::BatchCreatePPUCaches()
{
const std::string vsh_path = g_cfg.vfs.get_dev_flash() + "/vsh/module/vsh.self";
const std::string vsh_path = g_cfg.vfs.get_dev_flash() + "vsh/module/vsh.self";
const bool vsh_exists = fs::is_file(vsh_path);
const u32 total = m_game_data.size() + (vsh_exists ? 1 : 0);