diff options
author | bunnei <bunneidev@gmail.com> | 2014-10-30 02:07:27 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-10-30 02:07:27 +0100 |
commit | 01e37962e78abe2a39a5bd518fa3590a36912526 (patch) | |
tree | 93719ab2064b976fcb96528933409ea6048c230a /src/core/hle/kernel/archive.cpp | |
parent | Merge pull request #161 from archshift/sdmc-detected (diff) | |
parent | Fix some warnings (diff) | |
download | yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.gz yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.bz2 yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.lz yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.xz yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.tar.zst yuzu-01e37962e78abe2a39a5bd518fa3590a36912526.zip |
Diffstat (limited to 'src/core/hle/kernel/archive.cpp')
-rw-r--r-- | src/core/hle/kernel/archive.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp index 09b4e75a5..4a6140c71 100644 --- a/src/core/hle/kernel/archive.cpp +++ b/src/core/hle/kernel/archive.cpp @@ -153,7 +153,7 @@ public: u64 offset = cmd_buff[1] | ((u64) cmd_buff[2]) << 32; u32 length = cmd_buff[3]; u32 address = cmd_buff[5]; - DEBUG_LOG(KERNEL, "Read %s %s: offset=0x%x length=%d address=0x%x", + DEBUG_LOG(KERNEL, "Read %s %s: offset=0x%llx length=%d address=0x%x", GetTypeName().c_str(), GetName().c_str(), offset, length, address); cmd_buff[2] = backend->Read(offset, length, Memory::GetPointer(address)); break; @@ -166,7 +166,7 @@ public: u32 length = cmd_buff[3]; u32 flush = cmd_buff[4]; u32 address = cmd_buff[6]; - DEBUG_LOG(KERNEL, "Write %s %s: offset=0x%x length=%d address=0x%x, flush=0x%x", + DEBUG_LOG(KERNEL, "Write %s %s: offset=0x%llx length=%d address=0x%x, flush=0x%x", GetTypeName().c_str(), GetName().c_str(), offset, length, address, flush); cmd_buff[2] = backend->Write(offset, length, flush, Memory::GetPointer(address)); break; @@ -184,7 +184,7 @@ public: case FileCommand::SetSize: { u64 size = cmd_buff[1] | ((u64)cmd_buff[2] << 32); - DEBUG_LOG(KERNEL, "SetSize %s %s size=%d", GetTypeName().c_str(), GetName().c_str(), size); + DEBUG_LOG(KERNEL, "SetSize %s %s size=%llu", GetTypeName().c_str(), GetName().c_str(), size); backend->SetSize(size); break; } |