summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/bcat_module.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-10-05 02:20:46 +0200
committerGitHub <noreply@github.com>2021-10-05 02:20:46 +0200
commitb8694399693c13e04c049b474354c8efef1874ee (patch)
tree81aa763477da33921ac1047ae0dc9a363dc43e3a /src/core/hle/service/bcat/bcat_module.cpp
parentMerge pull request #7101 from ameerj/vk-tess-topology (diff)
parentservice: Replace service event creation with ServiceContext::CreateEvent (diff)
downloadyuzu-b8694399693c13e04c049b474354c8efef1874ee.tar
yuzu-b8694399693c13e04c049b474354c8efef1874ee.tar.gz
yuzu-b8694399693c13e04c049b474354c8efef1874ee.tar.bz2
yuzu-b8694399693c13e04c049b474354c8efef1874ee.tar.lz
yuzu-b8694399693c13e04c049b474354c8efef1874ee.tar.xz
yuzu-b8694399693c13e04c049b474354c8efef1874ee.tar.zst
yuzu-b8694399693c13e04c049b474354c8efef1874ee.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/bcat/bcat_module.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/bcat/bcat_module.cpp b/src/core/hle/service/bcat/bcat_module.cpp
index 701f634f8..27e9b8df8 100644
--- a/src/core/hle/service/bcat/bcat_module.cpp
+++ b/src/core/hle/service/bcat/bcat_module.cpp
@@ -127,8 +127,8 @@ public:
explicit IBcatService(Core::System& system_, Backend& backend_)
: ServiceFramework{system_, "IBcatService"}, backend{backend_},
progress{{
- ProgressServiceBackend{system_.Kernel(), "Normal"},
- ProgressServiceBackend{system_.Kernel(), "Directory"},
+ ProgressServiceBackend{system_, "Normal"},
+ ProgressServiceBackend{system_, "Directory"},
}} {
// clang-format off
static const FunctionInfo functions[] = {