GPU: Handle GP1 command mirrors

This commit is contained in:
Connor McLaughlin 2020-07-04 01:28:18 +10:00
parent d0241aafbf
commit 1231f6dafe
1 changed files with 1 additions and 1 deletions

View File

@ -884,7 +884,7 @@ u32 GPU::ReadGPUREAD()
void GPU::WriteGP1(u32 value)
{
const u8 command = Truncate8(value >> 24);
const u32 command = (value >> 24) & 0x3Fu;
const u32 param = value & UINT32_C(0x00FFFFFF);
switch (command)
{