diff options
| author | James Rowe <jroweboy@gmail.com> | 2018-04-07 07:20:39 -0600 |
|---|---|---|
| committer | James Rowe <jroweboy@gmail.com> | 2018-04-07 07:23:21 -0600 |
| commit | f16eb90b8f095b45fcfdd67b42e48467d7416e9b (patch) | |
| tree | 37637d362158cd47b5f770cd422a8c869f700e16 /src/core/hle/service/filesystem/fsp_srv.cpp | |
| parent | 37041ea12ccfc95013817ecb08319ad31b844a9a (diff) | |
Fix spelling of Initialize
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.cpp')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 4 |
1 files changed, 2 insertions, 2 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: FSP_SRV::FSP_SRV() : ServiceFramework("fsp-srv") { static const FunctionInfo functions[] = { - {1, &FSP_SRV::Initalize, "Initalize"}, + {1, &FSP_SRV::Initialize, "Initialize"}, {18, &FSP_SRV::MountSdCard, "MountSdCard"}, {22, &FSP_SRV::CreateSaveData, "CreateSaveData"}, {51, &FSP_SRV::MountSaveData, "MountSaveData"}, @@ -379,7 +379,7 @@ void FSP_SRV::TryLoadRomFS() { } } -void FSP_SRV::Initalize(Kernel::HLERequestContext& ctx) { +void FSP_SRV::Initialize(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_FS, "(STUBBED) called"); IPC::ResponseBuilder rb{ctx, 2}; |
