summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar James Rowe2018-04-07 07:20:39 -0600
committerGravatar James Rowe2018-04-07 07:23:21 -0600
commitf16eb90b8f095b45fcfdd67b42e48467d7416e9b (patch)
tree37637d362158cd47b5f770cd422a8c869f700e16 /src
parentMerge pull request #310 from N00byKing/patch-1 (diff)
downloadyuzu-f16eb90b8f095b45fcfdd67b42e48467d7416e9b.tar.gz
yuzu-f16eb90b8f095b45fcfdd67b42e48467d7416e9b.tar.xz
yuzu-f16eb90b8f095b45fcfdd67b42e48467d7416e9b.zip
Fix spelling of Initialize
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp4
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 89fa70ae6..10fa3a4d6 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -356,7 +356,7 @@ private:
356 356
357FSP_SRV::FSP_SRV() : ServiceFramework("fsp-srv") { 357FSP_SRV::FSP_SRV() : ServiceFramework("fsp-srv") {
358 static const FunctionInfo functions[] = { 358 static const FunctionInfo functions[] = {
359 {1, &FSP_SRV::Initalize, "Initalize"}, 359 {1, &FSP_SRV::Initialize, "Initialize"},
360 {18, &FSP_SRV::MountSdCard, "MountSdCard"}, 360 {18, &FSP_SRV::MountSdCard, "MountSdCard"},
361 {22, &FSP_SRV::CreateSaveData, "CreateSaveData"}, 361 {22, &FSP_SRV::CreateSaveData, "CreateSaveData"},
362 {51, &FSP_SRV::MountSaveData, "MountSaveData"}, 362 {51, &FSP_SRV::MountSaveData, "MountSaveData"},
@@ -379,7 +379,7 @@ void FSP_SRV::TryLoadRomFS() {
379 } 379 }
380} 380}
381 381
382void FSP_SRV::Initalize(Kernel::HLERequestContext& ctx) { 382void FSP_SRV::Initialize(Kernel::HLERequestContext& ctx) {
383 LOG_WARNING(Service_FS, "(STUBBED) called"); 383 LOG_WARNING(Service_FS, "(STUBBED) called");
384 384
385 IPC::ResponseBuilder rb{ctx, 2}; 385 IPC::ResponseBuilder rb{ctx, 2};
diff --git a/src/core/hle/service/filesystem/fsp_srv.h b/src/core/hle/service/filesystem/fsp_srv.h
index e15ba4375..6dc5874c0 100644
--- a/src/core/hle/service/filesystem/fsp_srv.h
+++ b/src/core/hle/service/filesystem/fsp_srv.h
@@ -22,7 +22,7 @@ public:
22private: 22private:
23 void TryLoadRomFS(); 23 void TryLoadRomFS();
24 24
25 void Initalize(Kernel::HLERequestContext& ctx); 25 void Initialize(Kernel::HLERequestContext& ctx);
26 void MountSdCard(Kernel::HLERequestContext& ctx); 26 void MountSdCard(Kernel::HLERequestContext& ctx);
27 void CreateSaveData(Kernel::HLERequestContext& ctx); 27 void CreateSaveData(Kernel::HLERequestContext& ctx);
28 void MountSaveData(Kernel::HLERequestContext& ctx); 28 void MountSaveData(Kernel::HLERequestContext& ctx);