summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-06-28 19:41:39 -0400
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2021-06-28 20:56:17 -0400
commit0e5c74bc9e18974f3169766aec2dee0effdc8df1 (patch)
treea9150b749734430daa422af6c9a1f79e1ada6e08 /src/core/hle
parent7a8de138df35aecf760402a6b8097b4d6e0e8178 (diff)
core, input_common: Miscellaneous fixes
bcat: Fix settings access telemetry_session: Fix settings accesses So this is what I get for testing with the web service disabled. touch_from_button: Fix settings access for clang
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/bcat/module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/module.cpp b/src/core/hle/service/bcat/module.cpp
index 44e4d0509..f85444da8 100644
--- a/src/core/hle/service/bcat/module.cpp
+++ b/src/core/hle/service/bcat/module.cpp
@@ -579,7 +579,7 @@ void Module::Interface::CreateDeliveryCacheStorageServiceWithApplicationId(
std::unique_ptr<Backend> CreateBackendFromSettings([[maybe_unused]] Core::System& system,
DirectoryGetter getter) {
#ifdef YUZU_ENABLE_BOXCAT
- if (Settings::values.bcat_backend == "boxcat") {
+ if (Settings::values.bcat_backend.GetValue() == "boxcat") {
return std::make_unique<Boxcat>(system.GetAppletManager(), std::move(getter));
}
#endif