diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-12 02:02:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-12 02:02:09 +0100 |
commit | 904d03b01f0ce09e97b6b454c3281f83314dc952 (patch) | |
tree | faa3e1f49b385e14b62857ef76c0e070d3eef36d /src | |
parent | Merge pull request #12004 from liamwhite/fix-hbl (diff) | |
parent | yuzu: Keep homebrew on the recently played list (diff) | |
download | yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar.gz yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar.bz2 yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar.lz yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar.xz yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.tar.zst yuzu-904d03b01f0ce09e97b6b454c3281f83314dc952.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index ce0c71021..d2a054eaa 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1909,7 +1909,8 @@ void GMainWindow::BootGame(const QString& filename, u64 program_id, std::size_t StartGameType type, AmLaunchType launch_type) { LOG_INFO(Frontend, "yuzu starting..."); - if (program_id > static_cast<u64>(Service::AM::Applets::AppletProgramId::MaxProgramId)) { + if (program_id == 0 || + program_id > static_cast<u64>(Service::AM::Applets::AppletProgramId::MaxProgramId)) { StoreRecentFile(filename); // Put the filename on top of the list } @@ -4295,7 +4296,7 @@ void GMainWindow::OnAlbum() { const auto filename = QString::fromStdString(album_nca->GetFullPath()); UISettings::values.roms_path = QFileInfo(filename).path(); - BootGame(filename); + BootGame(filename, AlbumId); } void GMainWindow::OnCabinet(Service::NFP::CabinetMode mode) { @@ -4319,7 +4320,7 @@ void GMainWindow::OnCabinet(Service::NFP::CabinetMode mode) { const auto filename = QString::fromStdString(cabinet_nca->GetFullPath()); UISettings::values.roms_path = QFileInfo(filename).path(); - BootGame(filename); + BootGame(filename, CabinetId); } void GMainWindow::OnMiiEdit() { @@ -4342,7 +4343,7 @@ void GMainWindow::OnMiiEdit() { const auto filename = QString::fromStdString((mii_applet_nca->GetFullPath())); UISettings::values.roms_path = QFileInfo(filename).path(); - BootGame(filename); + BootGame(filename, MiiEditId); } void GMainWindow::OnCaptureScreenshot() { |