diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2017-04-04 17:24:01 +0200 |
|---|---|---|
| committer | Léo Lam <leo@innovatetechnologi.es> | 2017-04-04 17:37:08 +0200 |
| commit | cf0492468dfe54f4fc75aa9ebd02aa87b986bbdf (patch) | |
| tree | d5fe06190643f0cb2755cfc0f1331e42701576a1 /Source/Core | |
| parent | d8c476b0158cac9258794a814059ebdfc2fc5c12 (diff) | |
IOS/WFS: Fix logging message
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/IOS/WFS/WFSI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index 16e97055d6..86e4fb492f 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -162,8 +162,8 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request) u32 content_id = Memory::Read_U32(request.buffer_in + 0xC); u32 input_ptr = Memory::Read_U32(request.buffer_in + 0x10); u32 input_size = Memory::Read_U32(request.buffer_in + 0x14); - INFO_LOG(IOS, "%s: %08x bytes of data at %08x from content id %d", ioctl_name, content_id, - input_ptr, input_size); + INFO_LOG(IOS, "%s: %08x bytes of data at %08x from content id %d", ioctl_name, input_size, + input_ptr, content_id); std::vector<u8> decrypted(input_size); mbedtls_aes_crypt_cbc(&m_aes_ctx, MBEDTLS_AES_DECRYPT, input_size, m_aes_iv, |
