mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Core: Better assert messages for stx op
This commit is contained in:
parent
d694637938
commit
99ae79f7f9
2 changed files with 3 additions and 3 deletions
|
@ -269,7 +269,7 @@ void Jit64::stX(UGeckoInstruction inst)
|
|||
accessSize = 8;
|
||||
break;
|
||||
default:
|
||||
_assert_msg_(DYNA_REC, 0, "AWETKLJASDLKF");
|
||||
_assert_msg_(DYNA_REC, 0, "stX: Invalid access size.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -179,7 +179,7 @@ void JitILBase::stX(UGeckoInstruction inst)
|
|||
ibuild.EmitStore8(value, addr);
|
||||
break;
|
||||
default:
|
||||
_assert_msg_(DYNA_REC, 0, "AWETKLJASDLKF");
|
||||
_assert_msg_(DYNA_REC, 0, "stX: Invalid access size.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -210,7 +210,7 @@ void JitILBase::stXx(UGeckoInstruction inst)
|
|||
ibuild.EmitStore8(value, addr);
|
||||
break;
|
||||
default:
|
||||
_assert_msg_(DYNA_REC, 0, "AWETKLJASDLKF");
|
||||
_assert_msg_(DYNA_REC, 0, "stXx: Invalid store size.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue