diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-07 22:49:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-07 22:49:09 +0200 |
commit | e0fb6a188c2df3f62b608658acf9c595f6580735 (patch) | |
tree | df0751e3a7f938921f2b00f203da111519af5d73 | |
parent | Merge pull request #316 from jroweboy/dontcrash (diff) | |
parent | Fix spelling of Initialize (diff) | |
download | yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar.gz yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar.bz2 yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar.lz yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar.xz yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.tar.zst yuzu-e0fb6a188c2df3f62b608658acf9c595f6580735.zip |
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 4 | ||||
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.h | 2 |
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: 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}; 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: private: void TryLoadRomFS(); - void Initalize(Kernel::HLERequestContext& ctx); + void Initialize(Kernel::HLERequestContext& ctx); void MountSdCard(Kernel::HLERequestContext& ctx); void CreateSaveData(Kernel::HLERequestContext& ctx); void MountSaveData(Kernel::HLERequestContext& ctx); |