jitstate: Remove code argument from ResetRSB

This commit is contained in:
MerryMage 2016-08-31 21:57:33 +01:00
parent ea6a4e82b5
commit b10c438e8e
3 changed files with 8 additions and 7 deletions

View file

@ -14,8 +14,9 @@
namespace Dynarmic {
namespace BackendX64 {
void JitState::ResetRSB(const BlockOfCode* code) {
rsb_codeptrs.fill(reinterpret_cast<u64>(code->GetReturnFromRunCodeAddress()));
void JitState::ResetRSB() {
rsb_location_descriptors.fill(0xFFFFFFFFFFFFFFFFull);
rsb_codeptrs.fill(0);
}
/**