mirror of https://github.com/PCSX2/pcsx2.git
GIF: Fix some incorrect unknown register warnings
This commit is contained in:
parent
9d3de8631c
commit
35387eeabb
|
@ -102,8 +102,8 @@ bool Gif_HandlerAD(u8* pMem)
|
||||||
bool Gif_HandlerAD_MTVU(u8* pMem)
|
bool Gif_HandlerAD_MTVU(u8* pMem)
|
||||||
{
|
{
|
||||||
// Note: Atomic communication is with MTVU.cpp Get_GSChanges
|
// Note: Atomic communication is with MTVU.cpp Get_GSChanges
|
||||||
u32 reg = pMem[8];
|
const u8 reg = pMem[8] & 0x7f;
|
||||||
u32* data = (u32*)pMem;
|
const u32* data = (u32*)pMem;
|
||||||
|
|
||||||
if (reg == GIF_A_D_REG_SIGNAL)
|
if (reg == GIF_A_D_REG_SIGNAL)
|
||||||
{ // SIGNAL
|
{ // SIGNAL
|
||||||
|
@ -148,7 +148,7 @@ bool Gif_HandlerAD_MTVU(u8* pMem)
|
||||||
// Returns true if pcsx2 needed to process the packet...
|
// Returns true if pcsx2 needed to process the packet...
|
||||||
bool Gif_HandlerAD_Debug(u8* pMem)
|
bool Gif_HandlerAD_Debug(u8* pMem)
|
||||||
{
|
{
|
||||||
u32 reg = pMem[8];
|
const u8 reg = pMem[8] & 0x7f;
|
||||||
if (reg == 0x50)
|
if (reg == 0x50)
|
||||||
{
|
{
|
||||||
Console.Error("GIF Handler Debug - BITBLTBUF");
|
Console.Error("GIF Handler Debug - BITBLTBUF");
|
||||||
|
|
Loading…
Reference in New Issue