Core: R4300iInstruction::DecodeSpecialName - Fix up SLL param
This commit is contained in:
parent
52a30b78fb
commit
4218cbad23
|
@ -637,7 +637,7 @@ void R4300iInstruction::DecodeSpecialName(void)
|
||||||
if (m_Instruction.Value != 0)
|
if (m_Instruction.Value != 0)
|
||||||
{
|
{
|
||||||
strcpy(m_Name, "SLL");
|
strcpy(m_Name, "SLL");
|
||||||
sprintf(m_Param, "SLL\t%s, %s, %d", CRegName::GPR[m_Instruction.rd], CRegName::GPR[m_Instruction.rt], m_Instruction.sa);
|
sprintf(m_Param, "%s, %s, %d", CRegName::GPR[m_Instruction.rd], CRegName::GPR[m_Instruction.rt], m_Instruction.sa);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue