mirror of
https://github.com/libretro/Play-.git
synced 2024-12-11 18:54:11 +00:00
Don't do anything if dest is zero.
This commit is contained in:
parent
103b280ff7
commit
b53a39e364
@ -137,6 +137,8 @@ void CMA_VU::CLower::GenerateEATAN()
|
||||
//00
|
||||
void CMA_VU::CLower::LQ()
|
||||
{
|
||||
if(m_nDest == 0) return;
|
||||
|
||||
m_codeGen->PushRelRef(offsetof(CMIPS, m_vuMem));
|
||||
VUShared::ComputeMemAccessAddr(
|
||||
m_codeGen,
|
||||
|
@ -473,6 +473,8 @@ void VUShared::ADD(CMipsJitter* codeGen, uint8 nDest, uint8 nFd, uint8 nFs, uint
|
||||
|
||||
void VUShared::ADDbc(CMipsJitter* codeGen, uint8 nDest, uint8 nFd, uint8 nFs, uint8 nFt, uint8 nBc, uint32 relativePipeTime)
|
||||
{
|
||||
if(nDest == 0) return;
|
||||
|
||||
if(nFd == 0)
|
||||
{
|
||||
//Use the temporary register to store the result
|
||||
|
Loading…
Reference in New Issue
Block a user