mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
rsx: Fix some broken latch checks
This commit is contained in:
parent
dd66380132
commit
58d8c65990
1 changed files with 3 additions and 3 deletions
|
@ -378,7 +378,7 @@ namespace rsx
|
||||||
|
|
||||||
void set_face_property(context* ctx, u32 reg, u32 arg)
|
void set_face_property(context* ctx, u32 reg, u32 arg)
|
||||||
{
|
{
|
||||||
if (reg == REGS(ctx)->latch)
|
if (arg == REGS(ctx)->latch)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -406,7 +406,7 @@ namespace rsx
|
||||||
|
|
||||||
void set_blend_equation(context* ctx, u32 reg, u32 arg)
|
void set_blend_equation(context* ctx, u32 reg, u32 arg)
|
||||||
{
|
{
|
||||||
if (reg == REGS(ctx)->latch)
|
if (arg == REGS(ctx)->latch)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -424,7 +424,7 @@ namespace rsx
|
||||||
|
|
||||||
void set_blend_factor(context* ctx, u32 reg, u32 arg)
|
void set_blend_factor(context* ctx, u32 reg, u32 arg)
|
||||||
{
|
{
|
||||||
if (reg == REGS(ctx)->latch)
|
if (arg == REGS(ctx)->latch)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue