Core: Better assert messages for stx op

This commit is contained in:
Lioncash 2014-08-20 14:16:05 -04:00
parent d694637938
commit 99ae79f7f9
2 changed files with 3 additions and 3 deletions

View File

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

View File

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