diff options
| author | Tilka <tilkax@gmail.com> | 2024-10-07 17:38:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-07 17:38:24 +0100 |
| commit | 3466f803b54fc9ef28440e1c53b404413d27692e (patch) | |
| tree | 5740f5d4a2effc9a6564f50a53e43d2fdf1cac2c /Source/Core/VideoCommon/XFStructs.cpp | |
| parent | 339f9311fb86aaf081f2e9ea2ca2c1a1071b35d6 (diff) | |
| parent | 929bcbdde9505f0f6a7db63a7329a282b741dc30 (diff) | |
Merge pull request #13110 from Pokechu22/fifo-analyzer-xf-index-words
Fifo analyzer: Fix indexed XF loads showing "bytes" instead of "words"
Diffstat (limited to 'Source/Core/VideoCommon/XFStructs.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/XFStructs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/XFStructs.cpp b/Source/Core/VideoCommon/XFStructs.cpp index e5ca9b81ea..d25d49495a 100644 --- a/Source/Core/VideoCommon/XFStructs.cpp +++ b/Source/Core/VideoCommon/XFStructs.cpp @@ -646,7 +646,7 @@ std::pair<std::string, std::string> GetXFTransferInfo(u16 base_address, u8 trans std::pair<std::string, std::string> GetXFIndexedLoadInfo(CPArray array, u32 index, u16 address, u8 size) { - const auto desc = fmt::format("Load {} bytes to XF address {:03x} from CP array {} row {}", size, + const auto desc = fmt::format("Load {} words to XF address {:03x} from CP array {} row {}", size, address, array, index); fmt::memory_buffer written; for (u32 i = 0; i < size; i++) |
