diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-19 09:43:16 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-22 19:36:24 +0200 |
commit | 81b1b71993473b31321c8ff2d0dd0b267848a968 (patch) | |
tree | 3f2ab1041c7d819949fd68faa3dd21759f7ce2a9 /src/core | |
parent | Merge pull request #6506 from ReinUsesLisp/master-semaphore-jthread (diff) | |
download | yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar.gz yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar.bz2 yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar.lz yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar.xz yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.tar.zst yuzu-81b1b71993473b31321c8ff2d0dd0b267848a968.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp index a2844ea8c..dc15cf58b 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp @@ -313,7 +313,7 @@ void SynchronizeInternal(AM::Applets::AppletManager& applet_manager, DirectoryGe LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { - void(Common::FS::RemoveFile(zip_path)); + Common::FS::RemoveFile(zip_path); } HandleDownloadDisplayResult(applet_manager, res); @@ -445,7 +445,7 @@ std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title) LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { - void(Common::FS::RemoveFile(bin_file_path)); + Common::FS::RemoveFile(bin_file_path); } HandleDownloadDisplayResult(applet_manager, res); |