| 671 | } |
| 672 | |
| 673 | static void sendVshBootable(JNIEnv *env, jlong progressId) { |
| 674 | auto dev_flash = g_cfg_vfs.get_dev_flash(); |
| 675 | |
| 676 | sendGameInfo( |
| 677 | env, progressId, |
| 678 | {{GameInfo{ |
| 679 | .path = dev_flash + "/vsh/module/vsh.self", |
| 680 | .name = "VSH", |
| 681 | .iconPath = dev_flash + "vsh/resource/explore/icon/icon_home.png", |
| 682 | }}}); |
| 683 | } |
| 684 | |
| 685 | static bool tryUnlockGame(const psf::registry &psf) { |
| 686 | auto contentId = psf::get_string(psf, "CONTENT_ID"); |
no test coverage detected