Browse Source
Merge pull request #1166 from lioncash/typo
filesystem: Fix typo in log message
pull/15/merge
Sebastian Valle
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|
|
|
|
|