diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-23 22:12:31 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-23 22:12:31 -0400 |
commit | f6f5c2e4d8f98559dd7cd57f0a1659d2d2e01ca2 (patch) | |
tree | 49f2b33839166608104fc000b1eb0a9d474b80ac /src | |
parent | 165c23c84844707249449826a8a18c25877e784b (diff) |
filesystem: Fix typo in log message
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
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) { ResultCode RegisterBIS(std::unique_ptr<FileSys::BISFactory>&& factory) { ASSERT_MSG(bis_factory == nullptr, "Tried to register a second BIS"); bis_factory = std::move(factory); - LOG_DEBUG(Service_FS, "Registred BIS"); + LOG_DEBUG(Service_FS, "Registered BIS"); return RESULT_SUCCESS; } |