summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/filesystem/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp
index 6f9c64263..fa81c01cf 100644
--- a/src/core/hle/service/filesystem/filesystem.cpp
+++ b/src/core/hle/service/filesystem/filesystem.cpp
@@ -254,7 +254,7 @@ ResultCode RegisterSDMC(std::unique_ptr<FileSys::SDMCFactory>&& factory) {
254ResultCode RegisterBIS(std::unique_ptr<FileSys::BISFactory>&& factory) { 254ResultCode RegisterBIS(std::unique_ptr<FileSys::BISFactory>&& factory) {
255 ASSERT_MSG(bis_factory == nullptr, "Tried to register a second BIS"); 255 ASSERT_MSG(bis_factory == nullptr, "Tried to register a second BIS");
256 bis_factory = std::move(factory); 256 bis_factory = std::move(factory);
257 LOG_DEBUG(Service_FS, "Registred BIS"); 257 LOG_DEBUG(Service_FS, "Registered BIS");
258 return RESULT_SUCCESS; 258 return RESULT_SUCCESS;
259} 259}
260 260