diff options
| author | JamePeng <jame_peng@sina.com> | 2016-04-09 03:44:00 +0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-04-08 15:44:00 -0400 |
| commit | 9045c57d6f88b8c828e325e8db75b19c4b4097bc (patch) | |
| tree | 3c477193bd461487fe1ff05eb5539d6ac46485b4 /src/core/hle/service/am/am_app.cpp | |
| parent | 61ec5fa776ee14115e2c3c755c730c44cb0cfd20 (diff) | |
update the code of AM service! (#1623)
Diffstat (limited to 'src/core/hle/service/am/am_app.cpp')
| -rw-r--r-- | src/core/hle/service/am/am_app.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/am/am_app.cpp b/src/core/hle/service/am/am_app.cpp index 16c76a1eb..d27b3defd 100644 --- a/src/core/hle/service/am/am_app.cpp +++ b/src/core/hle/service/am/am_app.cpp @@ -9,14 +9,14 @@ namespace Service { namespace AM { const Interface::FunctionInfo FunctionTable[] = { - {0x100100C0, GetNumContentInfos, "GetNumContentInfos"}, - {0x10020104, nullptr, "FindContentInfos"}, - {0x10030142, nullptr, "ListContentInfos"}, - {0x10040102, nullptr, "DeleteContents"}, - {0x10050084, nullptr, "GetDataTitleInfos"}, - {0x10070102, nullptr, "ListDataTitleTicketInfos"}, - {0x100900C0, nullptr, "IsDataTitleInUse"}, - {0x100A0000, nullptr, "IsExternalTitleDatabaseInitialized"}, + {0x100100C0, GetNumContentInfos, "GetNumContentInfos"}, + {0x10020104, FindContentInfos, "FindContentInfos"}, + {0x10030142, ListContentInfos, "ListContentInfos"}, + {0x10040102, DeleteContents, "DeleteContents"}, + {0x10050084, GetDataTitleInfos, "GetDataTitleInfos"}, + {0x10070102, ListDataTitleTicketInfos, "ListDataTitleTicketInfos"}, + {0x100900C0, nullptr, "IsDataTitleInUse"}, + {0x100A0000, nullptr, "IsExternalTitleDatabaseInitialized"}, }; AM_APP_Interface::AM_APP_Interface() { |
