diff options
author | Lioncash <mathew1800@gmail.com> | 2019-11-12 11:38:12 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-11-12 13:55:39 +0100 |
commit | f11b87ebf1cd5770f9128e62931183b0c9331067 (patch) | |
tree | 286bed12845e8843e88d2a317388d115b69d2d95 /src/core/hle/service/bcat | |
parent | perf_stats: Resolve implicit int to double conversion error (diff) | |
download | yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.gz yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.bz2 yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.lz yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.xz yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.zst yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.zip |
Diffstat (limited to 'src/core/hle/service/bcat')
-rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp index 918159e11..e35e874fe 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp @@ -114,7 +114,7 @@ void HandleDownloadDisplayResult(const AM::Applets::AppletManager& applet_manage const auto& frontend{applet_manager.GetAppletFrontendSet()}; frontend.error->ShowCustomErrorText( - ResultCode(-1), "There was an error while attempting to use Boxcat.", + RESULT_UNKNOWN, "There was an error while attempting to use Boxcat.", DOWNLOAD_RESULT_LOG_MESSAGES[static_cast<std::size_t>(res)], [] {}); } |