summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-08-25 07:19:46 -0500
committerGitHub <noreply@github.com>2018-08-25 07:19:46 -0500
commitf170159fde85c658987185f1e506c618ae56ada6 (patch)
tree20013f7664c49fbf291022fa63c4b315ff922c85 /src
parent6426b0f5514d6a7c5cc369368947eceb380bfc85 (diff)
parentf6f5c2e4d8f98559dd7cd57f0a1659d2d2e01ca2 (diff)
Merge pull request #1166 from lioncash/typo
filesystem: Fix typo in log message
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 914315d20..881c39e31 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;
}