diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-08 01:44:37 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 09:49:00 -0400 |
| commit | 19459e827f6c15f9429598015019ecb66f2e6cad (patch) | |
| tree | 61dac757115325ce01694429c6864fd99903ace9 /Source/Core/DiscIO/FileSystemGCWii.cpp | |
| parent | 3014feedc839d69931079ad3c4f645ef51055e1a (diff) | |
Partially revert "General: Toss out PRI macro usage"
Diffstat (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileSystemGCWii.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index 8d06c3f036..cd6f815629 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -77,7 +77,7 @@ u64 CFileSystemGCWii::ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 u64 read_length = std::min(_MaxBufferSize, pFileInfo->m_FileSize - _OffsetInFile); - DEBUG_LOG(DISCIO, "Reading %llx bytes at %llx from file %s. Offset: %llx Size: %llx", + DEBUG_LOG(DISCIO, "Reading %" PRIx64 " bytes at %" PRIx64 " from file %s. Offset: %" PRIx64 " Size: %" PRIx64, read_length, _OffsetInFile, _rFullPath.c_str(), pFileInfo->m_Offset, pFileInfo->m_FileSize); m_rVolume->Read(pFileInfo->m_Offset + _OffsetInFile, read_length, _pBuffer, m_Wii); |
