Browse Source
Merge pull request #315 from jroweboy/spelling-fix
Fix spelling of Initialize
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
src/core/hle/service/filesystem/fsp_srv.cpp
-
src/core/hle/service/filesystem/fsp_srv.h
|
|
|
@ -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}; |
|
|
|
|
|
|
|
@ -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); |
|
|
|
|