diff options
| author | bunnei <bunneidev@gmail.com> | 2015-03-04 21:27:24 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-03-04 21:27:24 -0500 |
| commit | 8e4e28aacb38b4f80c3ae80167841f4e451f6ef5 (patch) | |
| tree | cd4efbdfb0e01e9e2b424f17339f11873c90485c /src/core/hle/service/fs/fs_user.cpp | |
| parent | 8fc8c51118a190622728369f267877402f7bfb98 (diff) | |
| parent | 83a8975cb89b908b4737d647a210c19775f25ed7 (diff) | |
Merge pull request #615 from Subv/services
Services: Moved the PTM and APT services to their own folder
Diffstat (limited to 'src/core/hle/service/fs/fs_user.cpp')
| -rw-r--r-- | src/core/hle/service/fs/fs_user.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp index 2c1302208..eb312496e 100644 --- a/src/core/hle/service/fs/fs_user.cpp +++ b/src/core/hle/service/fs/fs_user.cpp @@ -520,7 +520,7 @@ static void CardSlotIsInserted(Service::Interface* self) { LOG_WARNING(Service_FS, "(STUBBED) called"); } -const FSUserInterface::FunctionInfo FunctionTable[] = { +const Interface::FunctionInfo FunctionTable[] = { {0x000100C6, nullptr, "Dummy1"}, {0x040100C4, nullptr, "Control"}, {0x08010002, Initialize, "Initialize"}, @@ -614,7 +614,7 @@ const FSUserInterface::FunctionInfo FunctionTable[] = { //////////////////////////////////////////////////////////////////////////////////////////////////// // Interface class -FSUserInterface::FSUserInterface() { +Interface::Interface() { Register(FunctionTable); } |
