mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
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:
commit
3466f803b5
@ -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,
|
std::pair<std::string, std::string> GetXFIndexedLoadInfo(CPArray array, u32 index, u16 address,
|
||||||
u8 size)
|
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);
|
address, array, index);
|
||||||
fmt::memory_buffer written;
|
fmt::memory_buffer written;
|
||||||
for (u32 i = 0; i < size; i++)
|
for (u32 i = 0; i < size; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user