mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-24 19:52:37 +01:00
cellGcmSetTexture_BorderColor fix
This commit is contained in:
parent
4b14c72ed8
commit
39dc6f0838
@ -325,7 +325,8 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
|
||||
case NV4097_SET_TEXTURE_BORDER_COLOR:
|
||||
{
|
||||
m_set_texture_border_color = true;
|
||||
m_border_color=ARGS(0);
|
||||
u32 tmp = ARGS(0);
|
||||
m_border_color=((tmp & 0x00FFFFFF)<<8)|((tmp & 0xFF000000)>>24);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user