diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/bcat/module.cpp | 2 |
2 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 e6ee0810b..0e451e9c2 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp | |||
| @@ -88,7 +88,7 @@ std::ostream& operator<<(std::ostream& os, DownloadResult result) { | |||
| 88 | 88 | ||
| 89 | constexpr u32 PORT = 443; | 89 | constexpr u32 PORT = 443; |
| 90 | constexpr u32 TIMEOUT_SECONDS = 30; | 90 | constexpr u32 TIMEOUT_SECONDS = 30; |
| 91 | constexpr u64 VFS_COPY_BLOCK_SIZE = 1ull << 24; // 4MB | 91 | [[maybe_unused]] constexpr u64 VFS_COPY_BLOCK_SIZE = 1ULL << 24; // 4MB |
| 92 | 92 | ||
| 93 | namespace { | 93 | namespace { |
| 94 | 94 | ||
diff --git a/src/core/hle/service/bcat/module.cpp b/src/core/hle/service/bcat/module.cpp index b3fed56c7..4c01bcd99 100644 --- a/src/core/hle/service/bcat/module.cpp +++ b/src/core/hle/service/bcat/module.cpp | |||
| @@ -567,7 +567,7 @@ std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter) { | |||
| 567 | 567 | ||
| 568 | Module::Interface::Interface(std::shared_ptr<Module> module, FileSystem::FileSystemController& fsc, | 568 | Module::Interface::Interface(std::shared_ptr<Module> module, FileSystem::FileSystemController& fsc, |
| 569 | const char* name) | 569 | const char* name) |
| 570 | : ServiceFramework(name), module(std::move(module)), fsc(fsc), | 570 | : ServiceFramework(name), fsc(fsc), module(std::move(module)), |
| 571 | backend(CreateBackendFromSettings([&fsc](u64 tid) { return fsc.GetBCATDirectory(tid); })) {} | 571 | backend(CreateBackendFromSettings([&fsc](u64 tid) { return fsc.GetBCATDirectory(tid); })) {} |
| 572 | 572 | ||
| 573 | Module::Interface::~Interface() = default; | 573 | Module::Interface::~Interface() = default; |