| 141 | } |
| 142 | |
| 143 | void ExploreMenuLayout::OnRemotePcExploreSelected() { |
| 144 | if(usb::IsStateOk()) { |
| 145 | if(R_SUCCEEDED(g_MainApplication->GetRemotePcExploreLayout()->Reload())) { |
| 146 | g_MainApplication->ShowLayout(g_MainApplication->GetRemotePcExploreLayout()); |
| 147 | } |
| 148 | } |
| 149 | else { |
| 150 | g_MainApplication->ShowNotification(cfg::Strings.GetString(300)); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void ExploreMenuLayout::OnNandPartitionSelected(const fs::Partition partition) { |
| 155 | g_MainApplication->LoadCommonIconMenuData(true, cfg::Strings.GetString(1), CommonIconKind::NAND, ""); |
nothing calls this directly
no test coverage detected