cellGcmSetTexture_BorderColor fix

This commit is contained in:
kacek 2014-03-18 07:20:59 +01:00
parent 4b14c72ed8
commit 39dc6f0838
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}