Merge pull request #13110 from Pokechu22/fifo-analyzer-xf-index-words

Fifo analyzer: Fix indexed XF loads showing "bytes" instead of "words"
This commit is contained in:
Tilka 2024-10-07 17:38:24 +01:00 committed by GitHub
commit 3466f803b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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++)