Merge pull request #10549 from Pokechu22/sw-tev-enum-map

Refactor various bits of graphics code for readability
This commit is contained in:
Pokechu22
2022-09-08 09:42:12 -07:00
committed by GitHub
13 changed files with 515 additions and 468 deletions

View File

@ -224,7 +224,7 @@ public:
const auto [name, desc] = GetXFTransferInfo(address, count, data);
ASSERT(!name.empty());
const u32 command = address | (count << 16);
const u32 command = address | ((count - 1) << 16);
text = QStringLiteral("XF %1 ").arg(command, 8, 16, QLatin1Char('0'));