Align the code in am.cpp!
Signed-off-by: JamePeng <jame_peng@sina.com>
This commit is contained in:
parent
60f8b5a535
commit
80a82acf55
1 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <cinttypes>
|
||||
|
||||
#include "common/logging/log.h"
|
||||
|
@ -47,14 +48,15 @@ void GetNumContentInfos(Service::Interface* self) {
|
|||
|
||||
void ListDataTitleTicketInfos(Service::Interface* self) {
|
||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
||||
u32 ticket_count = cmd_buff[1];
|
||||
u64 title_id = static_cast<u64>(cmd_buff[2]) << 32 | cmd_buff[3];
|
||||
u32 start_index = cmd_buff[4];
|
||||
u32 tipointer = cmd_buff[6];
|
||||
u32 ticket_count = cmd_buff[1];
|
||||
u64 title_id = static_cast<u64>(cmd_buff[2]) << 32 | cmd_buff[3];
|
||||
u32 start_index = cmd_buff[4];
|
||||
u32 ticket_info_pointer = cmd_buff[6];
|
||||
|
||||
cmd_buff[1] = RESULT_SUCCESS.raw;
|
||||
cmd_buff[2] = 0x18;
|
||||
LOG_WARNING(Service_AM, "(STUBBED) TicketCount=0x%08X TitleID=0x%016" PRIx64 " StartIndex=0x%08X TicketInfosPointer=0x%08X",ticket_count, title_id, start_index, tipointer);
|
||||
LOG_WARNING(Service_AM, "(STUBBED) TicketCount=0x%08X TitleID=0x%016" PRIx64 " StartIndex=0x%08X TicketInfosPointer=0x%08X",
|
||||
ticket_count, title_id, start_index, ticket_info_pointer);
|
||||
}
|
||||
|
||||
void Init() {
|
||||
|
|
Loading…
Reference in a new issue