diff options
| author | 2016-04-24 23:40:41 +0800 | |
|---|---|---|
| committer | 2016-04-24 23:40:41 +0800 | |
| commit | e16541e47c657923ad5dedd64560afd0902cdda2 (patch) | |
| tree | 2a701e1cc9606856e2cab7d2ac72eb2f44682a0c /src | |
| parent | assert: Allow UNREACHABLE_MSG to have just one argument (diff) | |
| download | yuzu-e16541e47c657923ad5dedd64560afd0902cdda2.tar.gz yuzu-e16541e47c657923ad5dedd64560afd0902cdda2.tar.xz yuzu-e16541e47c657923ad5dedd64560afd0902cdda2.zip | |
am: title_id is long long uint
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 9591522e5..3f71e7f2b 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -43,7 +43,7 @@ void FindContentInfos(Service::Interface* self) { | |||
| 43 | am_content_count[media_type] = cmd_buff[4]; | 43 | am_content_count[media_type] = cmd_buff[4]; |
| 44 | 44 | ||
| 45 | cmd_buff[1] = RESULT_SUCCESS.raw; | 45 | cmd_buff[1] = RESULT_SUCCESS.raw; |
| 46 | LOG_WARNING(Service_AM, "(STUBBED) media_type=%u, title_id=0x%016lx, content_cound=%u, content_ids_pointer=0x%08x, content_info_pointer=0x%08x", | 46 | LOG_WARNING(Service_AM, "(STUBBED) media_type=%u, title_id=0x%016llx, content_cound=%u, content_ids_pointer=0x%08x, content_info_pointer=0x%08x", |
| 47 | media_type, title_id, am_content_count[media_type], content_ids_pointer, content_info_pointer); | 47 | media_type, title_id, am_content_count[media_type], content_ids_pointer, content_info_pointer); |
| 48 | } | 48 | } |
| 49 | 49 | ||