summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/module.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-05-02 04:41:32 +0200
committerZach Hilman <zachhilman@gmail.com>2019-09-30 23:27:23 +0200
commitea17b294ea04a00d94025cda97b2cd4d5f730b17 (patch)
tree6a876c4998bd18b4a851b012b8522372c3f9a556 /src/core/hle/service/bcat/module.cpp
parentam: Unstub PopLaunchParameter and add bcat connection for app-specific data (diff)
downloadyuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar.gz
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar.bz2
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar.lz
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar.xz
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.tar.zst
yuzu-ea17b294ea04a00d94025cda97b2cd4d5f730b17.zip
Diffstat (limited to 'src/core/hle/service/bcat/module.cpp')
-rw-r--r--src/core/hle/service/bcat/module.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/service/bcat/module.cpp b/src/core/hle/service/bcat/module.cpp
index 9244c265a..a8d545992 100644
--- a/src/core/hle/service/bcat/module.cpp
+++ b/src/core/hle/service/bcat/module.cpp
@@ -589,7 +589,6 @@ void Module::Interface::CreateDeliveryCacheStorageServiceWithApplicationId(
Service::FileSystem::GetBCATDirectory(title_id));
}
-namespace {
std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter) {
const auto backend = Settings::values.bcat_backend;
@@ -600,7 +599,6 @@ std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter) {
return std::make_unique<NullBackend>(std::move(getter));
}
-} // Anonymous namespace
Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
: ServiceFramework(name), module(std::move(module)),