summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-07 23:42:51 +0100
committerLioncash <mathew1800@gmail.com>2016-12-08 02:55:59 +0100
commit26ea6b954636b334e4f31da97c30e215aa83f4a1 (patch)
tree87facd23b493f735cec3d4f52709cccb7e963155 /src/core/hle/service/am/am.cpp
parentMerge pull request #2232 from wwylele/other-save (diff)
downloadyuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar.gz
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar.bz2
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar.lz
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar.xz
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.tar.zst
yuzu-26ea6b954636b334e4f31da97c30e215aa83f4a1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index f7a990d69..d344a622f 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -20,7 +20,7 @@ static std::array<u32, 3> am_titles_list_count = {0, 0, 0};
static u32 am_ticket_count = 0;
static u32 am_ticket_list_count = 0;
-void GetTitleCount(Service::Interface* self) {
+void GetNumPrograms(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
u32 media_type = cmd_buff[1] & 0xFF;
@@ -81,7 +81,7 @@ void DeleteContents(Service::Interface* self) {
media_type, title_id, am_content_count[media_type], content_ids_pointer);
}
-void GetTitleList(Service::Interface* self) {
+void GetProgramList(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
u32 media_type = cmd_buff[2] & 0xFF;
@@ -97,7 +97,7 @@ void GetTitleList(Service::Interface* self) {
media_type, am_titles_list_count[media_type], title_ids_output_pointer);
}
-void GetTitleInfo(Service::Interface* self) {
+void GetProgramInfos(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
u32 media_type = cmd_buff[1] & 0xFF;
@@ -113,7 +113,7 @@ void GetTitleInfo(Service::Interface* self) {
}
void GetDataTitleInfos(Service::Interface* self) {
- GetTitleInfo(self);
+ GetProgramInfos(self);
LOG_WARNING(Service_AM, "(STUBBED) called");
}
@@ -151,7 +151,7 @@ void DeleteTicket(Service::Interface* self) {
LOG_WARNING(Service_AM, "(STUBBED) called title_id=0x%016" PRIx64 "", title_id);
}
-void GetTicketCount(Service::Interface* self) {
+void GetNumTickets(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
cmd_buff[1] = RESULT_SUCCESS.raw;